Skip to content

Commit 0e54146

Browse files
committed
Added mandatory info in pom.xml
Also added missing dependency in javafx project after remove cssfx
1 parent 0a21c18 commit 0e54146

2 files changed

Lines changed: 44 additions & 6 deletions

File tree

component-inspector-fx/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
<artifactId>javafx-graphics</artifactId>
2525
<version>11.0.2</version>
2626
</dependency>
27+
<dependency>
28+
<groupId>org.openjfx</groupId>
29+
<artifactId>javafx-controls</artifactId>
30+
<version>11.0.1</version>
31+
<scope>compile</scope>
32+
</dependency>
2733
</dependencies>
2834

2935
</project>

pom.xml

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?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/xsd/maven-4.0.0.xsd">
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">
53
<modelVersion>4.0.0</modelVersion>
64
<packaging>pom</packaging>
75

86
<groupId>com.tangorabox</groupId>
97
<artifactId>component-inspector</artifactId>
10-
<version>1.0-SNAPSHOT</version>
8+
<version>1.1-SNAPSHOT</version>
9+
<name>component-inspector</name>
1110

12-
<url>https://tangorabox.com</url>
11+
<url>https://github.com/TangoraBox/ComponentInspector</url>
12+
<description>Java Desktop (JavaFX and Swing) Component Inspector on mouse over </description>
1313

1414
<modules>
1515
<module>component-inspector-core</module>
@@ -24,8 +24,22 @@
2424
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2525
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2626
<java.release>11</java.release>
27+
<project.inceptionYear>2020</project.inceptionYear>
2728
</properties>
2829

30+
<issueManagement>
31+
<url>https://github.com/TangoraBox/ComponentInspector/issues</url>
32+
<system>GitHub Issues</system>
33+
</issueManagement>
34+
35+
<licenses>
36+
<license>
37+
<name>GNU GPL v3</name>
38+
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
39+
</license>
40+
</licenses>
41+
42+
2943
<distributionManagement>
3044
<snapshotRepository>
3145
<id>ossrh</id>
@@ -45,6 +59,24 @@
4559
<tag>HEAD</tag>
4660
</scm>
4761

62+
<organization>
63+
<name>ComponentInspector by Tangorabox.com</name>
64+
<url>https://tangorabox.com</url>
65+
</organization>
66+
67+
<developers>
68+
<developer>
69+
<name>GaRzY</name>
70+
<email>info@tangorabox.com</email>
71+
<url>https://github.com/garzy</url>
72+
<id>GaRzY</id>
73+
<roles>
74+
<role>Founder</role>
75+
<role>Maintainer</role>
76+
</roles>
77+
</developer>
78+
</developers>
79+
4880
<build>
4981
<plugins>
5082
<plugin>
@@ -77,7 +109,7 @@
77109
<localCheckout>true</localCheckout>
78110
<pushChanges>false</pushChanges>
79111
<mavenExecutorId>forked-path</mavenExecutorId>
80-
<!--<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>-->
112+
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
81113
</configuration>
82114
<dependencies>
83115
<dependency>

0 commit comments

Comments
 (0)