Skip to content

Commit 2bbe7f7

Browse files
committed
Merge branch 'release-2.0.6'
2 parents cb73fd8 + 4d02ab2 commit 2bbe7f7

File tree

1 file changed

+56
-11
lines changed

1 file changed

+56
-11
lines changed

pom.xml

+56-11
Original file line numberDiff line numberDiff line change
@@ -8,39 +8,60 @@
88
<version>4</version>
99
</parent>
1010

11-
<groupId>psidev.psi.tools</groupId>
1211
<artifactId>validator</artifactId>
1312
<packaging>jar</packaging>
14-
<version>2.0.6-SNAPSHOT</version>
13+
<version>2.0.6</version>
1514

1615
<name>PSI :: Tools :: Generic Schema Validator</name>
1716
<description>
1817
The library intends to provide a generic framework for validating XML Schema both at the syntactic and semantic level.
1918
</description>
2019

2120
<scm>
22-
<connection>scm:svn:https://svn.code.sf.net/p/psidev/svn/psi/tools/validator/trunk</connection>
23-
<developerConnection>scm:svn:https://svn.code.sf.net/p/psidev/svn/psi/tools/validator/trunk</developerConnection>
24-
<url>https://svn.code.sf.net/p/psidev/svn/psi/tools/validator/trunk</url>
21+
<connection>scm:git:https://github.com/MICommunity/psi-validator.git</connection>
22+
<developerConnection>scm:git:https://github.com/MICommunity/psi-validator.git</developerConnection>
23+
<url>https://github.com/MICommunity/psi-validator</url>
24+
<tag>HEAD</tag>
2525
</scm>
2626

27+
<build>
28+
<plugins>
29+
<plugin>
30+
<groupId>external.atlassian.jgitflow</groupId>
31+
<artifactId>jgitflow-maven-plugin</artifactId>
32+
<version>1.0-m5.1</version>
33+
<configuration>
34+
<flowInitContext>
35+
<masterBranchName>master</masterBranchName>
36+
<developBranchName>develop</developBranchName>
37+
<featureBranchPrefix>feature-</featureBranchPrefix>
38+
<releaseBranchPrefix>release-</releaseBranchPrefix>
39+
<hotfixBranchPrefix>hotfix-</hotfixBranchPrefix>
40+
<versionTagPrefix>${project.artifactId}-</versionTagPrefix>
41+
</flowInitContext>
42+
<!-- see goals wiki page for configuration options -->
43+
</configuration>
44+
</plugin>
45+
</plugins>
46+
</build>
47+
2748
<dependencies>
2849
<dependency>
2950
<groupId>psidev.psi.tools</groupId>
3051
<artifactId>cv-rule-reader</artifactId>
31-
<version>2.0.6-SNAPSHOT</version>
52+
<version>2.0.5</version>
3253
</dependency>
3354

3455
<dependency>
3556
<groupId>psidev.psi.tools</groupId>
3657
<artifactId>object-rule-reader</artifactId>
37-
<version>2.0.6-SNAPSHOT</version>
58+
<version>2.0.5</version>
3859
</dependency>
3960

4061
<dependency>
4162
<groupId>psidev.psi.tools</groupId>
4263
<artifactId>ontology-manager</artifactId>
43-
<version>2.0.6-SNAPSHOT</version>
64+
<version>2.0.6</version>
4465
</dependency>
4566

4667
<!-- Tests -->
@@ -76,10 +97,34 @@
7697

7798
<repositories>
7899
<repository>
79-
<id>intact.nexus</id>
80-
<name>IntAct Nexus</name>
81-
<url>http://www.ebi.ac.uk/intact/maven/nexus/content/groups/public/</url>
100+
<id>nexus-ebi-repo-old</id>
101+
<url>http://www.ebi.ac.uk/intact/maven/nexus/content/repositories/ebi-repo/</url>
102+
</repository>
103+
<repository>
104+
<id>nexus-ebi-release-repo</id>
105+
<url>http://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-repo/</url>
106+
</repository>
107+
<repository>
108+
<id>nexus-ebi-snapshot-repo</id>
109+
<url>http://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-snapshots/</url>
82110
</repository>
83111
</repositories>
112+
113+
<!-- Overwrites the previous repositories-->
114+
<distributionManagement>
115+
<!-- EBI repo -->
116+
<repository>
117+
<id>pst-release</id>
118+
<name>EBI Nexus Repository</name>
119+
<url>http://www.ebi.ac.uk/Tools/maven/repos/content/repositories/pst-release</url>
120+
</repository>
121+
<!-- EBI SNAPSHOT repo -->
122+
<snapshotRepository>
123+
<uniqueVersion>false</uniqueVersion>
124+
<id>pst-snapshots</id>
125+
<name>EBI Nexus Snapshots Repository</name>
126+
<url>http://www.ebi.ac.uk/Tools/maven/repos/content/repositories/pst-snapshots</url>
127+
</snapshotRepository>
128+
</distributionManagement>
84129

85130
</project>

0 commit comments

Comments
 (0)