-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
82 lines (72 loc) · 2.75 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gene42.devops</groupId>
<artifactId>gene42-devops-tools-public</artifactId>
<version>1.2.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Gene42 - DevOps - Public</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<distributionManagement>
<repository>
<id>gene42-nexus</id>
<name>Maven2 Repository for Public Releases</name>
<url>https://nexus.gene42.com/repository/gene42-public-releases/</url>
</repository>
<snapshotRepository>
<id>gene42-nexus</id>
<name>Maven2 Repository for Public Snapshots</name>
<url>https://nexus.gene42.com/repository/gene42-public-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>gene42-nexus-public</id>
<name>Gene42 PhenoTips Public repository</name>
<url>https://nexus.gene42.com/repository/gene42-public-group/</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<!-- Lock down plugin version for build reproducibility -->
<version>2.5.3</version>
<configuration>
<goals>deploy</goals>
<mavenExecutorId>forked-path</mavenExecutorId>
<autoVersionSubmodules>true</autoVersionSubmodules>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
<tagNameFormat>gene42-devops-public-@{project.version}</tagNameFormat>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<scm>
<connection>scm:git:git://github.com/Gene42/devops-tools-public.git</connection>
<developerConnection>scm:git:[email protected]:Gene42/devops-tools-public.git</developerConnection>
<url>https://github.com/Gene42/devops-tools-public</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>checkstyle-configuration</module>
<module>license-resources</module>
<module>license-verification-resources</module>
</modules>
</project>