Skip to content

Commit 84ff78e

Browse files
committed
Switched from partial to full generation of Maven poms
1 parent 9aa51ea commit 84ff78e

File tree

13 files changed

+132
-108
lines changed

13 files changed

+132
-108
lines changed

pom.xml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,41 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- File managed by WebFX (DO NOT EDIT MANUALLY) -->
23
<project xmlns="http://maven.apache.org/POM/4.0.0"
34
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
45
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
56
<modelVersion>4.0.0</modelVersion>
67

78
<parent>
8-
<artifactId>webfx-parent</artifactId>
99
<groupId>dev.webfx</groupId>
10+
<artifactId>webfx-parent</artifactId>
1011
<version>0.1.0-SNAPSHOT</version>
1112
</parent>
1213

1314
<artifactId>webfx-demo-particles</artifactId>
1415

15-
<packaging>pom</packaging>
16-
1716
<repositories>
1817

1918
<!-- For WebFX snapshots download (including webfx-parent) -->
2019
<repository>
2120
<id>webfx-snapshots</id>
2221
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
23-
<releases><enabled>false</enabled></releases>
24-
<snapshots><enabled>true</enabled></snapshots>
22+
<releases>
23+
<enabled>false</enabled>
24+
</releases>
25+
<snapshots>
26+
<enabled>true</enabled>
27+
</snapshots>
2528
</repository>
2629

2730
</repositories>
2831

32+
<packaging>pom</packaging>
33+
2934
<modules>
3035
<module>webfx-demo-particles-application</module>
31-
<module>webfx-demo-particles-application-openjfx</module>
32-
<module>webfx-demo-particles-application-gwt</module>
3336
<module>webfx-demo-particles-application-gluon</module>
37+
<module>webfx-demo-particles-application-gwt</module>
38+
<module>webfx-demo-particles-application-openjfx</module>
3439
</modules>
3540

3641
</project>
Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,56 @@
1-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
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">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- File managed by WebFX (DO NOT EDIT MANUALLY) -->
3+
<project xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
38
<parent>
4-
<artifactId>webfx-demo-particles</artifactId>
59
<groupId>dev.webfx</groupId>
10+
<artifactId>webfx-demo-particles</artifactId>
611
<version>0.1.0-SNAPSHOT</version>
712
</parent>
8-
<modelVersion>4.0.0</modelVersion>
913

1014
<artifactId>webfx-demo-particles-application-gluon</artifactId>
1115

12-
<dependencies> <!-- Dependencies managed by WebFX (DO NOT EDIT MANUALLY) -->
16+
<dependencies>
1317

1418
<dependency>
1519
<groupId>dev.webfx</groupId>
1620
<artifactId>webfx-demo-particles-application</artifactId>
1721
<version>0.1.0-SNAPSHOT</version>
1822
</dependency>
19-
23+
2024
<dependency>
2125
<groupId>dev.webfx</groupId>
2226
<artifactId>webfx-kit-openjfx</artifactId>
2327
<version>0.1.0-SNAPSHOT</version>
2428
</dependency>
25-
29+
2630
<dependency>
2731
<groupId>dev.webfx</groupId>
2832
<artifactId>webfx-platform-java-boot-impl</artifactId>
2933
<version>0.1.0-SNAPSHOT</version>
3034
</dependency>
31-
35+
3236
<dependency>
3337
<groupId>dev.webfx</groupId>
3438
<artifactId>webfx-platform-java-scheduler-impl</artifactId>
3539
<version>0.1.0-SNAPSHOT</version>
3640
</dependency>
37-
41+
3842
<dependency>
3943
<groupId>dev.webfx</groupId>
4044
<artifactId>webfx-platform-java-shutdown-impl</artifactId>
4145
<version>0.1.0-SNAPSHOT</version>
4246
</dependency>
43-
47+
4448
<dependency>
4549
<groupId>dev.webfx</groupId>
4650
<artifactId>webfx-platform-shared-log-impl-simple</artifactId>
4751
<version>0.1.0-SNAPSHOT</version>
4852
</dependency>
49-
53+
5054
</dependencies>
5155

5256
<build>
@@ -60,12 +64,18 @@
6064
</plugins>
6165
</build>
6266

63-
<!-- Redefining the gluon profiles here so they can be activated locally when invoking this pom directly -->
67+
<!-- Redefining the gluon profiles here, so they can be activated locally when invoking this pom directly -->
6468
<!-- Note: activating a profile locally here will trigger the properties defined in the root pom -->
6569
<profiles>
66-
<profile><id>gluon-desktop</id></profile>
67-
<profile><id>gluon-android</id></profile>
68-
<profile><id>gluon-ios</id></profile>
70+
<profile>
71+
<id>gluon-desktop</id>
72+
</profile>
73+
<profile>
74+
<id>gluon-android</id>
75+
</profile>
76+
<profile>
77+
<id>gluon-ios</id>
78+
</profile>
6979
</profiles>
7080

7181
</project>

webfx-demo-particles-application-gluon/webfx.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<project executable="true">
33

44
<dependencies>

0 commit comments

Comments
 (0)