Skip to content

Commit

Permalink
add modules for samples to parent
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinayagarwal committed Aug 14, 2024
1 parent 3312192 commit 8c5f379
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion emoji/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>emoji</artifactId>
<name>Emoji core</name>
<name>Emoji Core</name>
<description>Emoji support for JavaFX</description>

<parent>
Expand Down
2 changes: 1 addition & 1 deletion offline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>offline</artifactId>
<name>Offline support for Emoji</name>
<name>Emoji Offline</name>
<description>Offline Emoji support for JavaFX</description>

<parent>
Expand Down
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
<module>emoji</module>
<module>offline</module>
<module>updater</module>
<module>samples/introduction</module>
<module>samples/nodes</module>
</modules>

<properties>
Expand Down
9 changes: 8 additions & 1 deletion samples/introduction/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>My Gluon Application</name>
<name>Emoji Demo - Introduction</name>

<parent>
<groupId>com.gluonhq.emoji</groupId>
<artifactId>parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
9 changes: 8 additions & 1 deletion samples/nodes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
<artifactId>samples</artifactId>
<version>1.0.0-SNAPSHOT</version>

<name>samples</name>
<name>Emoji Demo - Nodes</name>

<parent>
<groupId>com.gluonhq.emoji</groupId>
<artifactId>parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 8c5f379

Please sign in to comment.