You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
databasedefinition/pom.xml

95 lines
2.8 KiB

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<modelVersion>4.0.0</modelVersion>
<groupId>de.kreth</groupId>
<artifactId>databasedefinition</artifactId>
<version>0.0.9-SNAPSHOT</version>
<name>DatabaseDefinition</name>
<description>Database creation and definition framework</description>
<properties>
<java-version>1.8</java-version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${java-version}</source>
<target>${java-version}</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.1</version>
<!-- <executions> -->
<!-- <execution> -->
<!-- <id>default-prepare-agent</id> -->
<!-- <goals> -->
<!-- <goal>prepare-agent</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- <execution> -->
<!-- <id>default-report</id> -->
<!-- <goals> -->
<!-- <goal>report</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- <execution> -->
<!-- <id>default-check</id> -->
<!-- <goals> -->
<!-- <goal>check</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- </executions> -->
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>kreth-repo</id>
<name>munich.spallek.com-releases</name>
<url>http://spallek.com:8081/artifactory/releases</url>
</repository>
<snapshotRepository>
<id>kreth-snapshots</id>
<name>munich.spallek.com-snapshots</name>
<url>http://spallek.com:8081/artifactory/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.18.3</version>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<url>https://github.com/markuskreth/databasedefinition</url>
<connection>scm:git:https://github.com/markuskreth/databasedefinition.git</connection>
<developerConnection>scm:git:https://github.com/markuskreth/databasedefinition.git</developerConnection>
</scm>
</project>