1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
3 | <modelVersion>4.0.0</modelVersion> |
---|
4 | <groupId>nl.nbic.brs</groupId> |
---|
5 | <artifactId>cytoscape-plugin-parent</artifactId> |
---|
6 | <version>0.0.1-SNAPSHOT</version> |
---|
7 | <packaging>pom</packaging> |
---|
8 | <name>Cytoscape plugin parent</name> |
---|
9 | <description>Parent project for NBIC BRS Cytoscape plugins with shared Maven options.</description> |
---|
10 | <modules> |
---|
11 | <module>alternative-table-import</module> |
---|
12 | <module>piqc-plugin</module> |
---|
13 | <module>subnetworkcreator-plugin</module> |
---|
14 | </modules> |
---|
15 | <organization> |
---|
16 | <name>Netherlands Bioinformatics Centre, Bioinformatics Research Support</name> |
---|
17 | <url>http://brs.nbic.nl/</url> |
---|
18 | </organization> |
---|
19 | <properties> |
---|
20 | <!-- These properties are used in POM, plugin.props and download-site.xml --> |
---|
21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
22 | <repository.brs.public>http://brs.nbic.nl/repo/content/groups/public/</repository.brs.public> |
---|
23 | <license.name>GNU Lesser General Public License</license.name> |
---|
24 | <license.url>http://www.gnu.org/licenses/gpl-3.0.txt</license.url> |
---|
25 | <developer.name>Tim te Beek</developer.name> |
---|
26 | <cytoscape.version>2.8</cytoscape.version> |
---|
27 | <maven.build.timestamp.format>MMMM d, yyyy</maven.build.timestamp.format> |
---|
28 | <release.date>${maven.build.timestamp}</release.date> |
---|
29 | </properties> |
---|
30 | <url>http://trac.nbic.nl/brs2011p07/</url> |
---|
31 | <developers> |
---|
32 | <developer> |
---|
33 | <id>tbeek</id> |
---|
34 | <name>${developer.name}</name> |
---|
35 | <email>tim.te.beek@nbic.nl</email> |
---|
36 | </developer> |
---|
37 | </developers> |
---|
38 | <licenses> |
---|
39 | <license> |
---|
40 | <name>${license.name}</name> |
---|
41 | <url>${license.url}</url> |
---|
42 | <distribution>repo</distribution> |
---|
43 | </license> |
---|
44 | </licenses> |
---|
45 | <scm> |
---|
46 | <connection>scm:svn:https://trac.nbic.nl/svn/brs2011p07/</connection> |
---|
47 | <developerConnection>scm:svn:https://trac.nbic.nl/svn/brs2011p07/</developerConnection> |
---|
48 | <url>https://trac.nbic.nl/brs2011p07/browser/</url> |
---|
49 | </scm> |
---|
50 | <issueManagement> |
---|
51 | <system>trac</system> |
---|
52 | <url>https://trac.nbic.nl/brs2011p07</url> |
---|
53 | </issueManagement> |
---|
54 | <ciManagement> |
---|
55 | <system>Jenkins</system> |
---|
56 | <url>https://brs.nbic.nl/ci/job/Cytoscape plugins/</url> |
---|
57 | </ciManagement> |
---|
58 | <distributionManagement> |
---|
59 | <repository> |
---|
60 | <id>brs-releases</id> |
---|
61 | <url>http://brs.nbic.nl/repo/content/repositories/releases</url> |
---|
62 | </repository> |
---|
63 | <snapshotRepository> |
---|
64 | <id>brs-snapshots</id> |
---|
65 | <url>http://brs.nbic.nl/repo/content/repositories/snapshots</url> |
---|
66 | </snapshotRepository> |
---|
67 | </distributionManagement> |
---|
68 | <dependencies> |
---|
69 | <dependency> |
---|
70 | <groupId>cytoscape.corelibs</groupId> |
---|
71 | <artifactId>giny</artifactId> |
---|
72 | <version>2.8.2</version> |
---|
73 | <scope>provided</scope> |
---|
74 | </dependency> |
---|
75 | <dependency> |
---|
76 | <groupId>cytoscape</groupId> |
---|
77 | <artifactId>application</artifactId> |
---|
78 | <version>2.8.2</version> |
---|
79 | <classifier>jar-with-dependencies</classifier> |
---|
80 | <scope>provided</scope> |
---|
81 | </dependency> |
---|
82 | <!-- Testing --> |
---|
83 | <dependency> |
---|
84 | <groupId>junit</groupId> |
---|
85 | <artifactId>junit</artifactId> |
---|
86 | <version>4.10</version> |
---|
87 | <scope>test</scope> |
---|
88 | </dependency> |
---|
89 | </dependencies> |
---|
90 | <repositories> |
---|
91 | <repository> |
---|
92 | <id>brs-public</id> |
---|
93 | <url>${repository.brs.public}</url> |
---|
94 | <releases> |
---|
95 | <enabled>true</enabled> |
---|
96 | </releases> |
---|
97 | <snapshots> |
---|
98 | <enabled>false</enabled> |
---|
99 | </snapshots> |
---|
100 | </repository> |
---|
101 | </repositories> |
---|
102 | <build> |
---|
103 | <resources> |
---|
104 | <resource> |
---|
105 | <directory>src/main/java</directory> |
---|
106 | <filtering>true</filtering> |
---|
107 | <includes> |
---|
108 | <include>**</include> |
---|
109 | </includes> |
---|
110 | </resource> |
---|
111 | <resource> |
---|
112 | <directory>src/main/resources</directory> |
---|
113 | <filtering>true</filtering> |
---|
114 | <includes> |
---|
115 | <include>**</include> |
---|
116 | </includes> |
---|
117 | </resource> |
---|
118 | </resources> |
---|
119 | <plugins> |
---|
120 | <plugin> |
---|
121 | <inherited>true</inherited> |
---|
122 | <groupId>org.apache.maven.plugins</groupId> |
---|
123 | <artifactId>maven-resources-plugin</artifactId> |
---|
124 | <version>2.5</version> |
---|
125 | <configuration> |
---|
126 | <encoding>UTF-8</encoding> |
---|
127 | </configuration> |
---|
128 | </plugin> |
---|
129 | <plugin> |
---|
130 | <inherited>true</inherited> |
---|
131 | <groupId>org.apache.maven.plugins</groupId> |
---|
132 | <artifactId>maven-compiler-plugin</artifactId> |
---|
133 | <version>2.3.2</version> |
---|
134 | <configuration> |
---|
135 | <compilerVersion>1.6</compilerVersion> |
---|
136 | <source>1.6</source> |
---|
137 | <target>1.6</target> |
---|
138 | <optimize>true</optimize> |
---|
139 | <showDeprecation>true</showDeprecation> |
---|
140 | <showWarnings>true</showWarnings> |
---|
141 | </configuration> |
---|
142 | </plugin> |
---|
143 | </plugins> |
---|
144 | </build> |
---|
145 | <reporting> |
---|
146 | <plugins> |
---|
147 | <plugin> |
---|
148 | <groupId>org.codehaus.mojo</groupId> |
---|
149 | <artifactId>findbugs-maven-plugin</artifactId> |
---|
150 | <version>2.4.0</version> |
---|
151 | <configuration> |
---|
152 | <findbugsXmlWithMessages>true</findbugsXmlWithMessages> |
---|
153 | <xmlOutput>true</xmlOutput> |
---|
154 | <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile> |
---|
155 | </configuration> |
---|
156 | </plugin> |
---|
157 | <plugin> |
---|
158 | <groupId>org.apache.maven.plugins</groupId> |
---|
159 | <artifactId>maven-pmd-plugin</artifactId> |
---|
160 | <version>2.7.1</version> |
---|
161 | <configuration> |
---|
162 | <targetJdk>1.6</targetJdk> |
---|
163 | <ignoreAnnotations>false</ignoreAnnotations> |
---|
164 | </configuration> |
---|
165 | </plugin> |
---|
166 | <plugin> |
---|
167 | <groupId>org.apache.maven.plugins</groupId> |
---|
168 | <artifactId>maven-jxr-plugin</artifactId> |
---|
169 | <version>2.3</version> |
---|
170 | </plugin> |
---|
171 | <plugin> |
---|
172 | <groupId>org.apache.maven.plugins</groupId> |
---|
173 | <artifactId>maven-site-plugin</artifactId> |
---|
174 | <version>3.0</version> |
---|
175 | </plugin> |
---|
176 | <plugin> |
---|
177 | <groupId>org.apache.maven.plugins</groupId> |
---|
178 | <artifactId>maven-project-info-reports-plugin</artifactId> |
---|
179 | <version>2.4</version> |
---|
180 | </plugin> |
---|
181 | </plugins> |
---|
182 | </reporting> |
---|
183 | </project> |
---|