forked from PRIDE-Archive/pride-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
executable file
·152 lines (138 loc) · 6.25 KB
/
pom.xml
File metadata and controls
executable file
·152 lines (138 loc) · 6.25 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?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>uk.ac.ebi.pride.utilities</groupId>
<artifactId>pride-mod</artifactId>
<packaging>jar</packaging>
<version>2.1.10-SNAPSHOT</version>
<name>Modification Java core API</name>
<parent>
<groupId>uk.ac.ebi.pride.architectural</groupId>
<artifactId>pride-core</artifactId>
<version>1.0.1</version>
</parent>
<!-- LICENSE - from parent POM -->
<!-- ORGANIZATION - from parent POM -->
<developers>
<developer>
<name>Yasset Perez-Riverol</name>
<id>yperez</id>
<email>yperez@ebi.ac.uk</email>
<organization>Proteomics Services Team, PANDA Group, EMBL-European Bioinformatics Institute</organization>
</developer>
<developer>
<id>mbernal</id>
<name>Manuel Bernal-Llinares</name>
<organization>Proteomics Team, EMBL-European Bioinformatics Institute</organization>
<organizationUrl>http://www.ebi.ac.uk/pride</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>Europe/London</timezone>
</developer>
</developers>
<properties>
<!-- Logging capabilities -->
<uk.ac.ebi.pride.architectural-pride-logging.version>1.0.0</uk.ac.ebi.pride.architectural-pride-logging.version>
<!-- TDD -->
<uk.ac.ebi.pride.architectural-pride-tdd.version>1.0.3</uk.ac.ebi.pride.architectural-pride-tdd.version>
<uk.ac.ebi.pride.architectural-pride-xml-handling.version>1.0.1</uk.ac.ebi.pride.architectural-pride-xml-handling.version>
</properties>
<dependencies>
<dependency>
<groupId>uk.ac.ebi.pride.architectural</groupId>
<artifactId>pride-logging</artifactId>
<type>pom</type>
<version>${uk.ac.ebi.pride.architectural-pride-logging.version}</version>
</dependency>
<dependency>
<groupId>uk.ac.ebi.pride.architectural</groupId>
<artifactId>pride-tdd</artifactId>
<type>pom</type>
<version>${uk.ac.ebi.pride.architectural-pride-tdd.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>uk.ac.ebi.pride.architectural</groupId>
<artifactId>pride-xml-handling</artifactId>
<type>pom</type>
<version>${uk.ac.ebi.pride.architectural-pride-xml-handling.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<!-- Obo dependencies for PSI-Mod-->
<!-- oboedit -->
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-oboformat</artifactId>
<version>3.5.0</version>
</dependency>
<!-- oboedit -->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<!-- you can use this plugin to generate the unimod object model from
the schema and binding files specified below. Note: this will
need an explicit maven goal call, since it is not integrated
into the standard mvn life cycle. The goal to use is:
org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.6.3:generate
NOTE: the code generation may overwrite existing classes, so care
should be taken with files that were manually modified.
-->
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.13.1</version>
<configuration>
<extension>true</extension>
<schemaDirectory>src/main/resources</schemaDirectory>
<schemaIncludes>
<include>unimod.xsd</include>
<include>pride_mods.xsd</include>
</schemaIncludes>
<bindingDirectory>src/main/resources</bindingDirectory>
<bindingIncludes>
<include>pride-mods-bindings.xjb</include>
<!--<include>pride-unimod-bindings.xjb</include>-->
</bindingIncludes>
<generateDirectory>src/main/java2</generateDirectory>
<removeOldOutput>false</removeOldOutput>
<forceRegenerate>true</forceRegenerate>
<verbose>true</verbose>
<args>
<arg>-no-header</arg>
</args>
</configuration>
</plugin>
</plugins>
</build>
<!--scm git config-->
<scm>
<connection>scm:git:https://github.com/PRIDE-Utilities/pride-mod.git</connection>
<developerConnection>scm:git:https://github.com/PRIDE-Utilities/pride-mod.git</developerConnection>
<url>https://github.com/PRIDE-Utilities/pride-mod.git</url>
<tag>HEAD</tag>
</scm>
</project>