forked from gluonhq/javaone2016
-
Notifications
You must be signed in to change notification settings - Fork 15
/
pom.xml
69 lines (62 loc) · 2.51 KB
/
pom.xml
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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.devoxx</groupId>
<artifactId>devoxx</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>The Devoxx App</description>
<url>https://gluonhq.com</url>
<modules>
<module>DevoxxClientMobile</module>
<module>DevoxxClientCommon</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>11</maven.compiler.release>
<gluon.mobile.version>6.2.3</gluon.mobile.version>
<gluon.cloudlink.client.version>6.0.7</gluon.cloudlink.client.version>
<gluon.afterburner.version>2.0.5</gluon.afterburner.version>
<gluon.maps.version>2.0.0-ea+6</gluon.maps.version>
<attach.version>4.0.18-SNAPSHOT</attach.version>
<javafx.version>21-ea+5</javafx.version>
<javafx-maven-plugin-version>0.0.8</javafx-maven-plugin-version>
<gluonfx-maven-plugin-version>1.0.18-SNAPSHOT</gluonfx-maven-plugin-version>
</properties>
<repositories>
<repository>
<id>Gluon Releases</id>
<url>https://nexus.gluonhq.com/nexus/content/repositories/releases/</url>
</repository>
<repository>
<id>Gluon Snapshots</id>
<url>https://nexus.gluonhq.com/nexus/content/repositories/public-snapshots/</url>
</repository>
<repository>
<id>Snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>Snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
</plugins>
</build>
<organization>
<name>Gluon</name>
<url>https://www.gluonhq.com</url>
</organization>
</project>