Simplified POM and updated website

This commit is contained in:
Carlos Galindo 2019-09-10 19:01:29 +02:00
parent 8b41dff1c5
commit dd50ffdcff
Signed by: kauron
GPG Key ID: 83E68706DEE119A3
4 changed files with 7 additions and 25 deletions

View File

@ -12,6 +12,6 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:3.8.1" level="project" />
<orderEntry type="library" name="Maven: com.jfoenix:jfoenix:1.10.0" level="project" />
<orderEntry type="library" name="Maven: com.jfoenix:jfoenix:8.0.9" level="project" />
</component>
</module>

26
pom.xml
View File

@ -8,12 +8,8 @@
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>Maven Snapshots</id>
<url>https://oss.sonatype.org/content/groups/public</url>
<id>Central Repository</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
@ -29,40 +25,26 @@
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
<version>1.10.0</version>
<version>8.0.9</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>es.kauron.jstudy.Main</mainClass>
</manifest>
<manifestEntries>
<Class-Path>.</Class-Path>
</manifestEntries>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>

View File

@ -238,7 +238,7 @@ public class Controller implements Initializable {
protected void onAboutAction(ActionEvent event) {
if (Desktop.isDesktopSupported()) {
try {
Desktop.getDesktop().browse(URI.create("https://kauron.github.io/jstudy"));
Desktop.getDesktop().browse(URI.create("https://gitlab.com/kauron/jstudy"));
} catch (Exception e) {
e.printStackTrace();
}

View File

@ -8,6 +8,6 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: com.jfoenix:jfoenix:1.10.0" level="project" />
<orderEntry type="library" name="Maven: com.jfoenix:jfoenix:8.0.9" level="project" />
</component>
</module>