Skip to content

Commit 9b38110

Browse files
committed
Release 2.5.1
1 parent 5ea0374 commit 9b38110

File tree

8 files changed

+754
-4
lines changed

8 files changed

+754
-4
lines changed

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.disk-project</groupId>
1414
<artifactId>disk-project</artifactId>
15-
<version>2.5.0</version>
15+
<version>2.5.1</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

client/pom.xml.versionsBackup

Lines changed: 240 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,240 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5+
6+
<!-- POM file generated with GWT webAppCreator -->
7+
<modelVersion>4.0.0</modelVersion>
8+
<artifactId>disk-project-client</artifactId>
9+
<name>Disk client</name>
10+
<description>Disk portal web application</description>
11+
<packaging>war</packaging>
12+
<parent>
13+
<groupId>org.disk-project</groupId>
14+
<artifactId>disk-project</artifactId>
15+
<version>2.5.0</version>
16+
<relativePath>../pom.xml</relativePath>
17+
</parent>
18+
19+
<properties>
20+
<gwt.version>2.9.0</gwt.version>
21+
<gwt-maven.version>2.9.0</gwt-maven.version>
22+
<gwtp.version>1.6</gwtp.version>
23+
<gin.version>2.1.2</gin.version>
24+
<gwt.d3.version>1.2.0</gwt.d3.version>
25+
<restygwt.version>2.1.1</restygwt.version>
26+
<validation.version>1.0.0.GA</validation.version>
27+
<gwt.codemirror.version>2.0.1</gwt.codemirror.version>
28+
<vaadin-polymer.version>1.9.3.1</vaadin-polymer.version>
29+
<three4g.version>0.108</three4g.version>
30+
31+
<java.version>1.8</java.version>
32+
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
33+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34+
</properties>
35+
36+
<repositories>
37+
<repository>
38+
<id>sonatype-snapshots</id>
39+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
40+
<snapshots><enabled>true</enabled></snapshots>
41+
<releases><enabled>false</enabled></releases>
42+
</repository>
43+
<repository>
44+
<id>vaadin-snapshots</id>
45+
<url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
46+
<snapshots><enabled>true</enabled></snapshots>
47+
</repository>
48+
<repository>
49+
<id>google-snapshots</id>
50+
<url>https://oss.sonatype.org/content/repositories/google-snapshots/</url>
51+
<snapshots><enabled>true</enabled></snapshots>
52+
</repository>
53+
</repositories>
54+
55+
<dependencyManagement>
56+
<dependencies>
57+
<dependency>
58+
<groupId>com.google.gwt</groupId>
59+
<artifactId>gwt</artifactId>
60+
<version>${gwt.version}</version>
61+
<type>pom</type>
62+
<scope>import</scope>
63+
</dependency>
64+
</dependencies>
65+
</dependencyManagement>
66+
67+
<dependencies>
68+
<!-- Disk shared -->
69+
<dependency>
70+
<groupId>org.disk-project</groupId>
71+
<artifactId>disk-project-shared</artifactId>
72+
<version>${project.version}</version>
73+
<scope>provided</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.disk-project</groupId>
77+
<artifactId>disk-project-shared</artifactId>
78+
<version>${project.version}</version>
79+
<classifier>sources</classifier>
80+
</dependency>
81+
82+
<!-- GWT -->
83+
<dependency>
84+
<groupId>com.google.gwt</groupId>
85+
<artifactId>gwt-user</artifactId>
86+
<scope>provided</scope>
87+
</dependency>
88+
<dependency>
89+
<groupId>com.google.gwt</groupId>
90+
<artifactId>gwt-codeserver</artifactId>
91+
<scope>provided</scope>
92+
</dependency>
93+
94+
<dependency>
95+
<groupId>com.googlecode.gwtquery</groupId>
96+
<artifactId>gwtquery</artifactId>
97+
<version>1.4.4-SNAPSHOT</version>
98+
<scope>provided</scope>
99+
<exclusions>
100+
<exclusion>
101+
<groupId>com.google.gwt</groupId>
102+
<artifactId>gwt-elemental</artifactId>
103+
</exclusion>
104+
</exclusions>
105+
</dependency>
106+
107+
<!-- Vaadin GWT Polymer -->
108+
<dependency>
109+
<groupId>com.vaadin.polymer</groupId>
110+
<artifactId>vaadin-gwt-polymer-elements</artifactId>
111+
<version>${vaadin-polymer.version}</version>
112+
<scope>provided</scope>
113+
</dependency>
114+
115+
<!-- GWT D3 -->
116+
<dependency>
117+
<groupId>com.github.gwtd3</groupId>
118+
<artifactId>gwt-d3-api</artifactId>
119+
<version>${gwt.d3.version}</version>
120+
<scope>provided</scope>
121+
</dependency>
122+
123+
<!-- GWT Codemirror -->
124+
<dependency>
125+
<groupId>edu.stanford.protege</groupId>
126+
<artifactId>codemirror-gwt</artifactId>
127+
<version>${gwt.codemirror.version}</version>
128+
</dependency>
129+
130+
<!-- GWT Gin -->
131+
<dependency>
132+
<groupId>com.google.gwt.inject</groupId>
133+
<artifactId>gin</artifactId>
134+
<version>${gin.version}</version>
135+
<scope>provided</scope>
136+
</dependency>
137+
138+
<!-- GWT MVP -->
139+
<dependency>
140+
<groupId>com.gwtplatform</groupId>
141+
<artifactId>gwtp-mvp-client</artifactId>
142+
<version>${gwtp.version}</version>
143+
<scope>provided</scope>
144+
</dependency>
145+
<dependency>
146+
<groupId>com.gwtplatform</groupId>
147+
<artifactId>gwtp-mvp-shared</artifactId>
148+
<version>${gwtp.version}</version>
149+
<scope>provided</scope>
150+
</dependency>
151+
152+
<!-- RESTY GWT -->
153+
<dependency>
154+
<groupId>org.fusesource.restygwt</groupId>
155+
<artifactId>restygwt</artifactId>
156+
<version>${restygwt.version}</version>
157+
<scope>provided</scope>
158+
</dependency>
159+
160+
<!-- Keycloak -->
161+
<dependency>
162+
<groupId>org.realityforge.gwt.keycloak</groupId>
163+
<artifactId>gwt-keycloak</artifactId>
164+
<version>0.7</version>
165+
<scope>provided</scope>
166+
</dependency>
167+
168+
<!-- Three GWT -->
169+
<dependency>
170+
<groupId>org.treblereel.gwt</groupId>
171+
<artifactId>three4g</artifactId>
172+
<version>${three4g.version}</version>
173+
</dependency>
174+
<dependency>
175+
<groupId>org.treblereel.gwt</groupId>
176+
<artifactId>three4g-extensions</artifactId>
177+
<version>${three4g.version}</version>
178+
</dependency>
179+
</dependencies>
180+
181+
182+
<build>
183+
<plugins>
184+
<plugin>
185+
<groupId>org.codehaus.mojo</groupId>
186+
<artifactId>gwt-maven-plugin</artifactId>
187+
<version>${gwt-maven.version}</version>
188+
<executions>
189+
<execution>
190+
<goals>
191+
<goal>compile</goal>
192+
</goals>
193+
</execution>
194+
</executions>
195+
<!--inherited>true</inherited>
196+
<configuration>
197+
<runTarget>index.html</runTarget>
198+
<draftCompile>false</draftCompile>
199+
<optimizationLevel>9</optimizationLevel>
200+
<disableCastChecking>true</disableCastChecking>
201+
<disableClassMetadata>true</disableClassMetadata>
202+
<enableAssertions>false</enableAssertions>
203+
<closureCompiler>true</closureCompiler>
204+
<bindAddress>0.0.0.0</bindAddress>
205+
</configuration-->
206+
</plugin>
207+
<plugin>
208+
<groupId>org.apache.maven.plugins</groupId>
209+
<artifactId>maven-compiler-plugin</artifactId>
210+
<version>3.5.1</version>
211+
<configuration>
212+
<source>${java.version}</source>
213+
<target>${java.version}</target>
214+
</configuration>
215+
</plugin>
216+
217+
<!--plugin>
218+
<groupId>org.apache.maven.plugins</groupId>
219+
<artifactId>maven-war-plugin</artifactId>
220+
<version>3.3.1</version>
221+
<configuration>
222+
<archive>
223+
<manifest>
224+
<addClasspath>true</addClasspath>
225+
</manifest>
226+
</archive>
227+
</configuration>
228+
</plugin-->
229+
230+
231+
<!--plugin>
232+
<groupId>org.mortbay.jetty</groupId>
233+
<artifactId>jetty-maven-plugin</artifactId>
234+
<version>8.1.16.v20140903</version>
235+
</plugin-->
236+
</plugins>
237+
</build>
238+
239+
</project>
240+

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>org.disk-project</groupId>
88
<artifactId>disk-project</artifactId>
9-
<version>2.5.0</version>
9+
<version>2.5.1</version>
1010
<name>Disk</name>
1111
<packaging>pom</packaging>
1212
<modules>

pom.xml.versionsBackup

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5+
6+
<modelVersion>4.0.0</modelVersion>
7+
<groupId>org.disk-project</groupId>
8+
<artifactId>disk-project</artifactId>
9+
<version>2.5.0</version>
10+
<name>Disk</name>
11+
<packaging>pom</packaging>
12+
<modules>
13+
<module>shared</module>
14+
<module>server</module>
15+
<module>client</module>
16+
</modules>
17+
18+
<distributionManagement>
19+
<repository>
20+
<id>archiva.internal</id>
21+
<name>Internal Release Repository</name>
22+
<url>https://www.wings-workflows.org/archiva/repository/internal/</url>
23+
</repository>
24+
<snapshotRepository>
25+
<id>archiva.snapshots</id>
26+
<name>Internal Snapshot Repository</name>
27+
<url>https://www.wings-workflows.org/archiva/repository/snapshots/</url>
28+
</snapshotRepository>
29+
</distributionManagement>
30+
</project>

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<packaging>war</packaging>
1212
<parent>
1313
<groupId>org.disk-project</groupId>
14-
<version>2.5.0</version>
14+
<version>2.5.1</version>
1515
<artifactId>disk-project</artifactId>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>

0 commit comments

Comments
 (0)