|
8 | 8 | <version>4</version>
|
9 | 9 | </parent>
|
10 | 10 |
|
11 |
| - <groupId>psidev.psi.tools</groupId> |
12 | 11 | <artifactId>validator</artifactId>
|
13 | 12 | <packaging>jar</packaging>
|
14 |
| - <version>2.0.6-SNAPSHOT</version> |
| 13 | + <version>2.0.6</version> |
15 | 14 |
|
16 | 15 | <name>PSI :: Tools :: Generic Schema Validator</name>
|
17 | 16 | <description>
|
18 | 17 | The library intends to provide a generic framework for validating XML Schema both at the syntactic and semantic level.
|
19 | 18 | </description>
|
20 | 19 |
|
21 | 20 | <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> |
25 | 25 | </scm>
|
26 | 26 |
|
| 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 | + |
27 | 48 | <dependencies>
|
28 | 49 | <dependency>
|
29 | 50 | <groupId>psidev.psi.tools</groupId>
|
30 | 51 | <artifactId>cv-rule-reader</artifactId>
|
31 |
| - <version>2.0.6-SNAPSHOT</version> |
| 52 | + <version>2.0.5</version> |
32 | 53 | </dependency>
|
33 | 54 |
|
34 | 55 | <dependency>
|
35 | 56 | <groupId>psidev.psi.tools</groupId>
|
36 | 57 | <artifactId>object-rule-reader</artifactId>
|
37 |
| - <version>2.0.6-SNAPSHOT</version> |
| 58 | + <version>2.0.5</version> |
38 | 59 | </dependency>
|
39 | 60 |
|
40 | 61 | <dependency>
|
41 | 62 | <groupId>psidev.psi.tools</groupId>
|
42 | 63 | <artifactId>ontology-manager</artifactId>
|
43 |
| - <version>2.0.6-SNAPSHOT</version> |
| 64 | + <version>2.0.6</version> |
44 | 65 | </dependency>
|
45 | 66 |
|
46 | 67 | <!-- Tests -->
|
|
76 | 97 |
|
77 | 98 | <repositories>
|
78 | 99 | <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> |
82 | 110 | </repository>
|
83 | 111 | </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> |
84 | 129 |
|
85 | 130 | </project>
|
0 commit comments