2016-05-10 12:23:35 +02:00
|
|
|
<?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>se.vidstige</groupId>
|
|
|
|
<artifactId>jadb</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2016-05-23 16:09:01 +02:00
|
|
|
<url>https://github.com/vidstige/jadb</url>
|
2016-05-10 12:23:35 +02:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>vidstige</id>
|
|
|
|
<name>Samuel Carlsson</name>
|
|
|
|
<email>samuel.carlsson@gmai.com</email>
|
|
|
|
<url>https://github.com/vidstige</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2016-07-29 18:51:52 +02:00
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2016-05-10 12:23:35 +02:00
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.10</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2016-05-11 12:18:08 +02:00
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<testSourceDirectory>test</testSourceDirectory>
|
2016-05-10 12:23:35 +02:00
|
|
|
<plugins>
|
2016-07-25 08:55:05 +02:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-05-10 12:23:35 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.1.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.4.2</version>
|
|
|
|
<configuration>
|
|
|
|
<useReleaseProfile>false</useReleaseProfile>
|
|
|
|
<releaseProfiles>release</releaseProfiles>
|
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
|
|
<goals>deploy</goals>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.scm</groupId>
|
|
|
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
|
|
|
<version>1.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2016-05-23 16:09:01 +02:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2016-07-29 18:51:52 +02:00
|
|
|
<version>2.19.1</version>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.java</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
|
|
|
<!--Integration tests -->
|
|
|
|
<exclude>se.vidstige.jadb.test.integration.*</exclude>
|
|
|
|
<!--Mocks and data-->
|
|
|
|
<exclude>**/data/*</exclude>
|
|
|
|
<exclude>**/fakes/*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
<version>2.19.1</version>
|
2016-05-23 16:09:01 +02:00
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.java</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
2016-07-29 18:51:52 +02:00
|
|
|
<!--Integration tests -->
|
|
|
|
<exclude>se.vidstige.jadb.test.unit.*</exclude>
|
|
|
|
<!--Mocks and data-->
|
2016-05-23 16:09:01 +02:00
|
|
|
<exclude>**/data/*</exclude>
|
|
|
|
<exclude>**/fakes/*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
2016-07-29 18:51:52 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
<goal>verify</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2016-05-23 16:09:01 +02:00
|
|
|
</plugin>
|
2016-05-10 12:23:35 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.1.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2016-05-23 16:09:01 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-05-10 12:23:35 +02:00
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2016-05-23 16:09:01 +02:00
|
|
|
<version>2.10.3</version>
|
2016-05-10 12:23:35 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<scm>
|
2016-05-23 16:09:01 +02:00
|
|
|
<url>scm:git:git@github.com:vidstige/jadb.git</url>
|
|
|
|
<connection>scm:git:git@github.com:vidstige/jadb.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:vidstige/jadb.git</developerConnection>
|
2016-05-10 12:23:35 +02:00
|
|
|
<tag>HEAD</tag>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
</project>
|