parent
d9a550013f
commit
e2feb00b84
@ -1,66 +1,66 @@ |
|||||||
<project |
<project |
||||||
xmlns="http://maven.apache.org/POM/4.0.0" |
xmlns="http://maven.apache.org/POM/4.0.0" |
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||||
|
|
||||||
<modelVersion>4.0.0</modelVersion> |
<modelVersion>4.0.0</modelVersion> |
||||||
<groupId>de.kreth</groupId> |
<groupId>de.kreth</groupId> |
||||||
<artifactId>databasedefinition</artifactId> |
<artifactId>databasedefinition</artifactId> |
||||||
<version>0.0.7-SNAPSHOT</version> |
<version>0.0.7-SNAPSHOT</version> |
||||||
<name>DatabaseDefinition</name> |
<name>DatabaseDefinition</name> |
||||||
<description>Database creation and definition framework</description> |
<description>Database creation and definition framework</description> |
||||||
|
|
||||||
<properties> |
<properties> |
||||||
<java-version>1.8</java-version> |
<java-version>1.8</java-version> |
||||||
</properties> |
</properties> |
||||||
|
|
||||||
<build> |
<build> |
||||||
<plugins> |
<plugins> |
||||||
<plugin> |
<plugin> |
||||||
<artifactId>maven-compiler-plugin</artifactId> |
<artifactId>maven-compiler-plugin</artifactId> |
||||||
<version>3.5.1</version> |
<version>3.5.1</version> |
||||||
<configuration> |
<configuration> |
||||||
<source>${java-version}</source> |
<source>${java-version}</source> |
||||||
<target>${java-version}</target> |
<target>${java-version}</target> |
||||||
<compilerArgument>-Xlint:all</compilerArgument> |
<compilerArgument>-Xlint:all</compilerArgument> |
||||||
<showWarnings>true</showWarnings> |
<showWarnings>true</showWarnings> |
||||||
<showDeprecation>true</showDeprecation> |
<showDeprecation>true</showDeprecation> |
||||||
</configuration> |
</configuration> |
||||||
</plugin> |
</plugin> |
||||||
<plugin> |
<plugin> |
||||||
<artifactId>maven-release-plugin</artifactId> |
<artifactId>maven-release-plugin</artifactId> |
||||||
<version>2.5.2</version> |
<version>2.5.2</version> |
||||||
<!-- <configuration> --> |
<!-- <configuration> --> |
||||||
<!-- <goals>install</goals> --> |
<!-- <goals>install</goals> --> |
||||||
<!-- </configuration> --> |
<!-- </configuration> --> |
||||||
</plugin> |
</plugin> |
||||||
</plugins> |
</plugins> |
||||||
</build> |
</build> |
||||||
|
|
||||||
<distributionManagement> |
<distributionManagement> |
||||||
<repository> |
<repository> |
||||||
<id>kreth-repo</id> |
<id>kreth-repo</id> |
||||||
<name>munich.spallek.com-releases</name> |
<name>munich.spallek.com-releases</name> |
||||||
<url>http://spallek.com:8081/artifactory/releases</url> |
<url>http://spallek.com:8081/artifactory/releases</url> |
||||||
</repository> |
</repository> |
||||||
<snapshotRepository> |
<snapshotRepository> |
||||||
<id>kreth-snapshots</id> |
<id>kreth-snapshots</id> |
||||||
<name>munich.spallek.com-snapshots</name> |
<name>munich.spallek.com-snapshots</name> |
||||||
<url>http://spallek.com:8081/artifactory/snapshots</url> |
<url>http://spallek.com:8081/artifactory/snapshots</url> |
||||||
</snapshotRepository> |
</snapshotRepository> |
||||||
</distributionManagement> |
</distributionManagement> |
||||||
|
|
||||||
<dependencies> |
<dependencies> |
||||||
<dependency> |
<dependency> |
||||||
<groupId>junit</groupId> |
<groupId>junit</groupId> |
||||||
<artifactId>junit</artifactId> |
<artifactId>junit</artifactId> |
||||||
<version>4.7</version> |
<version>4.12</version> |
||||||
</dependency> |
</dependency> |
||||||
</dependencies> |
</dependencies> |
||||||
<scm> |
<scm> |
||||||
<url>https://github.com/markuskreth/databasedefinition</url> |
<url>https://github.com/markuskreth/databasedefinition</url> |
||||||
<connection>scm:git:https://github.com/markuskreth/databasedefinition.git</connection> |
<connection>scm:git:https://github.com/markuskreth/databasedefinition.git</connection> |
||||||
<developerConnection>scm:git:https://github.com/markuskreth/databasedefinition.git</developerConnection> |
<developerConnection>scm:git:https://github.com/markuskreth/databasedefinition.git</developerConnection> |
||||||
<tag>databasedefinition-0.0.4</tag> |
<tag>databasedefinition-0.0.4</tag> |
||||||
</scm> |
</scm> |
||||||
</project> |
</project> |
||||||
Loading…
Reference in new issue