Skip to content

Commit 1f9d935

Browse files
author
GoCD User
committed
"Version update"
1 parent 8ebd807 commit 1f9d935

1 file changed

Lines changed: 180 additions & 200 deletions

File tree

pom.xml

Lines changed: 180 additions & 200 deletions
Original file line numberDiff line numberDiff line change
@@ -1,204 +1,184 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
5-
6-
<groupId>org.reactome.server</groupId>
7-
<artifactId>fireworks-layout</artifactId>
8-
<version>3.0.7</version>
9-
<packaging>jar</packaging>
10-
11-
<name>Fireworks Layout</name>
12-
13-
<parent>
14-
<groupId>org.reactome.maven</groupId>
15-
<artifactId>reactome-parent</artifactId>
16-
<version>1.0.5</version>
17-
</parent>
18-
19-
<organization>
20-
<name>The European Bioinformatics Institute</name>
21-
<url>https://www.ebi.ac.uk/</url>
22-
</organization>
23-
24-
<developers>
25-
<developer>
26-
<id>gviteri</id>
27-
<name>Guilherme Viteri</name>
28-
<organization>https://www.ebi.ac.uk/</organization>
29-
</developer>
30-
<developer>
31-
<id>amundo</id>
32-
</developer>
33-
</developers>
34-
35-
<properties>
36-
37-
<main.class>org.reactome.server.fireworks.Main</main.class>
38-
39-
</properties>
40-
41-
<dependencies>
42-
<!--Reactome data-->
43-
<dependency>
44-
<groupId>org.reactome.server.graph</groupId>
45-
<artifactId>graph-core</artifactId>
46-
</dependency>
47-
48-
<!--JSAP console reader-->
49-
<dependency>
50-
<groupId>com.martiansoftware</groupId>
51-
<artifactId>jsap</artifactId>
52-
</dependency>
53-
54-
<dependency>
55-
<groupId>org.apache.commons</groupId>
56-
<artifactId>commons-math3</artifactId>
57-
</dependency>
58-
59-
<dependency>
60-
<groupId>com.fasterxml.jackson.core</groupId>
61-
<artifactId>jackson-databind</artifactId>
62-
</dependency>
63-
64-
<!-- Logging -->
65-
<dependency>
66-
<groupId>ch.qos.logback</groupId>
67-
<artifactId>logback-classic</artifactId>
68-
</dependency>
69-
70-
</dependencies>
71-
72-
<build>
73-
<finalName>fireworks</finalName>
74-
<resources>
75-
<resource>
76-
<directory>src/main/resources</directory>
77-
<filtering>true</filtering>
78-
</resource>
79-
</resources>
80-
<testResources>
81-
<testResource>
82-
<directory>src/test/resources</directory>
83-
<filtering>true</filtering>
84-
</testResource>
85-
</testResources>
86-
<plugins>
87-
88-
<!-- To be able to run this project in the command line e.g java -jar -->
89-
<plugin>
90-
<groupId>org.springframework.boot</groupId>
91-
<artifactId>spring-boot-maven-plugin</artifactId>
92-
<version>${spring-boot.version}</version>
93-
<configuration>
94-
<attach>false</attach>
95-
<fork>true</fork>
96-
<mainClass>${main.class}</mainClass>
97-
<classifier>exec</classifier>
98-
</configuration>
99-
<executions>
100-
<execution>
101-
<goals>
102-
<goal>repackage</goal>
103-
</goals>
104-
</execution>
105-
</executions>
106-
</plugin>
107-
<plugin>
108-
<groupId>org.apache.maven.plugins</groupId>
109-
<artifactId>maven-resources-plugin</artifactId>
110-
<version>${maven-resources-plugin.version}</version>
111-
</plugin>
112-
<plugin>
113-
<groupId>org.apache.maven.plugins</groupId>
114-
<artifactId>maven-compiler-plugin</artifactId>
115-
<version>${maven.compiler.version}</version>
116-
<configuration>
117-
<source>${java.version}</source>
118-
<target>${java.version}</target>
119-
</configuration>
120-
</plugin>
121-
122-
<!-- Generate the jar only -->
123-
<plugin>
124-
<groupId>org.apache.maven.plugins</groupId>
125-
<artifactId>maven-jar-plugin</artifactId>
126-
<version>${maven.jar.version}</version>
127-
<executions>
128-
<execution>
129-
<id>default-jar</id>
130-
<goals>
131-
<goal>jar</goal>
132-
</goals>
133-
<configuration>
134-
<excludes>
135-
<exclude>**/logback.xml</exclude>
136-
</excludes>
137-
</configuration>
138-
</execution>
139-
<execution>
140-
<id>exec-jar</id>
141-
<goals>
142-
<goal>jar</goal>
143-
</goals>
144-
<configuration>
145-
<classifier>exec</classifier>
146-
</configuration>
147-
</execution>
148-
</executions>
149-
</plugin>
150-
<plugin>
151-
<groupId>org.apache.maven.plugins</groupId>
152-
<artifactId>maven-checkstyle-plugin</artifactId>
153-
<version>3.1.1</version>
154-
<dependencies>
155-
<!-- This dependency allows Checkstyle to understand Java 11 syntax -->
156-
<dependency>
157-
<groupId>com.puppycrawl.tools</groupId>
158-
<artifactId>checkstyle</artifactId>
159-
<version>8.44</version>
160-
</dependency>
161-
</dependencies>
162-
<executions>
163-
<execution>
164-
<id>checkstyle-check</id>
165-
<goals>
166-
<goal>check</goal>
167-
</goals>
168-
</execution>
169-
</executions>
170-
<configuration>
171-
<configLocation>checkstyle.xml</configLocation>
172-
<!-- Optional: Set encoding -->
173-
<encoding>UTF-8</encoding>
174-
</configuration>
175-
</plugin>
176-
</plugins>
177-
</build>
178-
179-
<repositories>
180-
<!-- EBI repo -->
181-
<repository>
182-
<id>nexus-ebi-repo</id>
183-
<name>The EBI internal repository</name>
184-
<url>https://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-repo/</url>
185-
<releases>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.reactome.server</groupId>
5+
<artifactId>fireworks-layout</artifactId>
6+
<version>3.1.0</version>
7+
<packaging>jar</packaging>
8+
<name>Fireworks Layout</name>
9+
<parent>
10+
<groupId>org.reactome.maven</groupId>
11+
<artifactId>reactome-parent</artifactId>
12+
<version>1.1.0</version>
13+
</parent>
14+
<organization>
15+
<name>The European Bioinformatics Institute</name>
16+
<url>https://www.ebi.ac.uk/</url>
17+
</organization>
18+
<developers>
19+
<developer>
20+
<id>gviteri</id>
21+
<name>Guilherme Viteri</name>
22+
<organization>https://www.ebi.ac.uk/</organization>
23+
</developer>
24+
<developer>
25+
<id>amundo</id>
26+
</developer>
27+
</developers>
28+
<properties>
29+
<main.class>org.reactome.server.fireworks.Main</main.class>
30+
</properties>
31+
<dependencies>
32+
<!--Reactome data-->
33+
<dependency>
34+
<groupId>org.reactome.server.graph</groupId>
35+
<artifactId>graph-core</artifactId>
36+
</dependency>
37+
<!--JSAP console reader-->
38+
<dependency>
39+
<groupId>com.martiansoftware</groupId>
40+
<artifactId>jsap</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.apache.commons</groupId>
44+
<artifactId>commons-math3</artifactId>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.fasterxml.jackson.core</groupId>
48+
<artifactId>jackson-databind</artifactId>
49+
</dependency>
50+
<!-- Logging -->
51+
<dependency>
52+
<groupId>ch.qos.logback</groupId>
53+
<artifactId>logback-classic</artifactId>
54+
</dependency>
55+
</dependencies>
56+
<build>
57+
<finalName>fireworks</finalName>
58+
<resources>
59+
<resource>
60+
<directory>src/main/resources</directory>
61+
<filtering>true</filtering>
62+
</resource>
63+
</resources>
64+
<testResources>
65+
<testResource>
66+
<directory>src/test/resources</directory>
67+
<filtering>true</filtering>
68+
</testResource>
69+
</testResources>
70+
<plugins>
71+
<!-- To be able to run this project in the command line e.g java -jar -->
72+
<plugin>
73+
<groupId>org.springframework.boot</groupId>
74+
<artifactId>spring-boot-maven-plugin</artifactId>
75+
<version>${spring-boot.version}</version>
76+
<configuration>
77+
<attach>false</attach>
78+
<fork>true</fork>
79+
<mainClass>${main.class}</mainClass>
80+
<classifier>exec</classifier>
81+
</configuration>
82+
<executions>
83+
<execution>
84+
<goals>
85+
<goal>repackage</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-resources-plugin</artifactId>
93+
<version>${maven-resources-plugin.version}</version>
94+
</plugin>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-compiler-plugin</artifactId>
98+
<version>${maven.compiler.version}</version>
99+
<configuration>
100+
<source>${java.version}</source>
101+
<target>${java.version}</target>
102+
</configuration>
103+
</plugin>
104+
<!-- Generate the jar only -->
105+
<plugin>
106+
<groupId>org.apache.maven.plugins</groupId>
107+
<artifactId>maven-jar-plugin</artifactId>
108+
<version>${maven.jar.version}</version>
109+
<executions>
110+
<execution>
111+
<id>default-jar</id>
112+
<goals>
113+
<goal>jar</goal>
114+
</goals>
115+
<configuration>
116+
<excludes>
117+
<exclude>**/logback.xml</exclude>
118+
</excludes>
119+
</configuration>
120+
</execution>
121+
<execution>
122+
<id>exec-jar</id>
123+
<goals>
124+
<goal>jar</goal>
125+
</goals>
126+
<configuration>
127+
<classifier>exec</classifier>
128+
</configuration>
129+
</execution>
130+
</executions>
131+
</plugin>
132+
<plugin>
133+
<groupId>org.apache.maven.plugins</groupId>
134+
<artifactId>maven-checkstyle-plugin</artifactId>
135+
<version>3.1.1</version>
136+
<dependencies>
137+
<!-- This dependency allows Checkstyle to understand Java 11 syntax -->
138+
<dependency>
139+
<groupId>com.puppycrawl.tools</groupId>
140+
<artifactId>checkstyle</artifactId>
141+
<version>8.44</version>
142+
</dependency>
143+
</dependencies>
144+
<executions>
145+
<execution>
146+
<id>checkstyle-check</id>
147+
<goals>
148+
<goal>check</goal>
149+
</goals>
150+
</execution>
151+
</executions>
152+
<configuration>
153+
<configLocation>checkstyle.xml</configLocation>
154+
<!-- Optional: Set encoding -->
155+
<encoding>UTF-8</encoding>
156+
</configuration>
157+
</plugin>
158+
</plugins>
159+
</build>
160+
<repositories>
161+
<!-- EBI repo -->
162+
<repository>
163+
<id>nexus-ebi-repo</id>
164+
<name>The EBI internal repository</name>
165+
<url>https://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-repo/</url>
166+
<releases>
186167
</releases>
187-
<snapshots>
188-
<enabled>false</enabled>
168+
<snapshots>
169+
<enabled>false</enabled>
170+
</snapshots>
171+
</repository>
172+
<!-- EBI SNAPSHOT repo -->
173+
<repository>
174+
<id>nexus-ebi-snapshot-repo</id>
175+
<name>The EBI internal snapshot repository</name>
176+
<url>https://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-snapshots/</url>
177+
<releases>
178+
<enabled>false</enabled>
179+
</releases>
180+
<snapshots>
189181
</snapshots>
190-
</repository>
191-
<!-- EBI SNAPSHOT repo -->
192-
<repository>
193-
<id>nexus-ebi-snapshot-repo</id>
194-
<name>The EBI internal snapshot repository</name>
195-
<url>https://www.ebi.ac.uk/Tools/maven/repos/content/groups/ebi-snapshots/</url>
196-
<releases>
197-
<enabled>false</enabled>
198-
</releases>
199-
<snapshots>
200-
</snapshots>
201-
</repository>
202-
</repositories>
203-
182+
</repository>
183+
</repositories>
204184
</project>

0 commit comments

Comments
 (0)