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>
|
2018-05-17 00:17:43 +02:00
|
|
|
<version>1.1.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>
|
2017-03-20 11:18:56 +01:00
|
|
|
<mockito-core.version>2.7.17</mockito-core.version>
|
2016-05-10 12:23:35 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.10</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-03-17 17:48:13 +01:00
|
|
|
|
2017-03-20 11:18:56 +01:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-core -->
|
2017-03-17 17:48:13 +01:00
|
|
|
<dependency>
|
2017-03-20 11:18:56 +01:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${mockito-core.version}</version>
|
2017-03-17 17:48:13 +01:00
|
|
|
</dependency>
|
2016-05-10 12:23:35 +02:00
|
|
|
</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-09-30 16:25:27 +02:00
|
|
|
<!-- Version plugin is a plugin which can:
|
|
|
|
* Create report about all new versions for both code dependencies and maven plugins themselves
|
|
|
|
* Update them automatically (mvn versions:use-latest-versions and so on)
|
|
|
|
|
|
|
|
Usage - most commonly used patterns:
|
|
|
|
* `mvn versions:help` - will show all available tasks for this plugin with short description
|
|
|
|
* `mvn versions:dependency-updates-report` produces a report of those project dependencies which have newer versions available.
|
|
|
|
Will be in 'target\site' folder
|
|
|
|
* `mvn versions:plugin-updates-report` produces a report of those plugins which have newer versions available.
|
|
|
|
Will be in 'target\site' folder
|
|
|
|
* `mvn versions:use-latest-versions` searches the pom for all versions which have been a newer version and replaces them with the latest version.
|
|
|
|
|
|
|
|
For more info see official [documentation](http://www.mojohaus.org/versions-maven-plugin/)
|
|
|
|
-->
|
2016-07-25 08:55:05 +02:00
|
|
|
<plugin>
|
2016-09-28 15:45:50 +02:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>versions-maven-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-07-25 08:55:05 +02:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-09-28 15:45:50 +02:00
|
|
|
<version>3.5.1</version>
|
2016-07-25 08:55:05 +02:00
|
|
|
<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>
|
2016-09-28 15:45:50 +02:00
|
|
|
<version>3.0.1</version>
|
2016-05-10 12:23:35 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2016-07-29 18:57:56 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-05-10 12:23:35 +02:00
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2016-09-28 15:45:50 +02:00
|
|
|
<version>2.5.3</version>
|
2016-05-10 12:23:35 +02:00
|
|
|
<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>
|
2017-10-22 19:30:48 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.7.7.201606060606</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>report</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-05-23 16:09:01 +02:00
|
|
|
<plugin>
|
2016-07-29 18:57:56 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-05-23 16:09:01 +02:00
|
|
|
<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>
|
2017-03-20 11:18:56 +01:00
|
|
|
<!--Exclude integration tests -->
|
2016-07-29 18:51:52 +02:00
|
|
|
<exclude>se.vidstige.jadb.test.integration.*</exclude>
|
|
|
|
<!--Mocks and data-->
|
|
|
|
<exclude>**/data/*</exclude>
|
|
|
|
<exclude>**/fakes/*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2016-07-29 18:57:56 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-07-29 18:51:52 +02:00
|
|
|
<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>
|
2017-03-20 11:18:56 +01:00
|
|
|
<!--Include only integration tests -->
|
|
|
|
<include>se.vidstige.jadb.test.integration.*</include>
|
2016-07-29 18:51:52 +02:00
|
|
|
<!--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>
|
|
|
|
<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>
|