-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
101 lines (92 loc) · 4.19 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>uk.ac.ebi.intact.search.interactions</groupId>
<artifactId>intact-search-interactions-module</artifactId>
<version>1.1.1</version>
<packaging>pom</packaging>
<name>IntAct Portal :: Search Interactions Parent Module</name>
<description>SpringBoot with spring data interactions solr</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
<finalName>${project.artifactId}-${project.version}</finalName>
</properties>
<modules>
<module>intact-search-interactions-service</module>
<module>intact-search-interactions-ws</module>
</modules>
<scm>
<connection>scm:git:https://github.com/intact-portal/intact-portal-search-interactions.git</connection>
<developerConnection>scm:git:https://github.com/intact-portal/intact-portal-search-interactions.git
</developerConnection>
<url>https://github.com/intact-portal/intact-portal-search-interactions</url>
<tag>HEAD</tag>
</scm>
<build>
<finalName>${finalName}</finalName>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<flowInitContext>
<masterBranchName>master</masterBranchName>
<developBranchName>develop</developBranchName>
<featureBranchPrefix>feature-</featureBranchPrefix>
<releaseBranchPrefix>release-</releaseBranchPrefix>
<hotfixBranchPrefix>hotfix-</hotfixBranchPrefix>
<versionTagPrefix>${project.artifactId}-</versionTagPrefix>
</flowInitContext>
<username>${git.user}</username>
<password>${git.password}</password>
<!-- see goals wiki page for configuration options -->
<allowUntracked>true</allowUntracked>
<pullMaster>true</pullMaster>
<pullDevelop>true</pullDevelop>
<pushReleases>true</pushReleases>
<pushHotfixes>true</pushHotfixes>
<pushFeatures>true</pushFeatures>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>nexus-ebi-release-repo</id>
<url>https://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-repo/</url>
</repository>
<repository>
<id>nexus-ebi-snapshot-repo</id>
<url>https://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-snapshots/</url>
</repository>
</repositories>
<distributionManagement>
<!-- EBI repo -->
<repository>
<id>pst-release</id>
<name>EBI Nexus Repository</name>
<url>https://www.ebi.ac.uk/Tools/maven/repos/content/repositories/pst-release/</url>
</repository>
<!-- EBI SNAPSHOT repo -->
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>pst-snapshots</id>
<name>EBI Nexus Snapshots Repository</name>
<url>https://www.ebi.ac.uk/Tools/maven/repos/content/repositories/pst-snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>