Skip to content

Commit

Permalink
Merge branch 'release/7.0.0' into 'master'
Browse files Browse the repository at this point in the history
Release/7.0.0

See merge request PlayWall/PlayWallDesktop!4
  • Loading branch information
Tobisaninfo committed Sep 26, 2019
2 parents d8f5749 + e673bfc commit 75799d1
Show file tree
Hide file tree
Showing 485 changed files with 8,276 additions and 7,738 deletions.
6 changes: 0 additions & 6 deletions .idea/ant.xml

This file was deleted.

13 changes: 8 additions & 5 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 8 additions & 5 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions .idea/sqldialects.xml

This file was deleted.

37 changes: 23 additions & 14 deletions PlayWall/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.tobias.playpad</groupId>
<artifactId>PlayWallDesktop</artifactId>
<version>6.2.0-SNAPSHOT</version>
<version>7.0.0</version>
</parent>

<artifactId>PlayWall</artifactId>
Expand All @@ -16,8 +16,6 @@
<project.main>de.tobias.playpad.PlayPadMain</project.main>
<project.iconBase>src/main/resources/icon</project.iconBase>

<itextpdf.version>5.5.13</itextpdf.version>

<launch4j-maven-plugin.version>1.7.25</launch4j-maven-plugin.version>
<appbundle-maven-plugin.version>1.2.0</appbundle-maven-plugin.version>

Expand All @@ -40,13 +38,6 @@
<version>${components.version}</version>
</dependency>

<!-- PDF-->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>${itextpdf.version}</version>
</dependency>

<!--Template parsing-->
<dependency>
<groupId>org.springframework</groupId>
Expand Down Expand Up @@ -101,6 +92,24 @@
</executions>
</plugin>

<plugin>
<groupId>nl.geodienstencentrum.maven</groupId>
<artifactId>sass-maven-plugin</artifactId>
<version>3.7.2</version>
<executions>
<execution>
<id>translate-css</id>
<goals>
<goal>update-stylesheets</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<destination>target/classes/style</destination>
</configuration>
</execution>
</executions>
</plugin>

<!--Fat Jar-->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down Expand Up @@ -249,19 +258,19 @@
<repository>
<id>release</id>
<name>TheCodeLabs-releases</name>
<url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-release</url>
<url>https://maven.thecodedev.de/artifactory/TheCodeLabs-release</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>TheCodeLabs-snapshots</name>
<url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-snapshots</url>
<url>https://maven.thecodedev.de/artifactory/TheCodeLabs-snapshots</url>
</snapshotRepository>
</distributionManagement>

<repositories>
<repository>
<id>release</id>
<url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-release</url>
<url>https://maven.thecodedev.de/artifactory/TheCodeLabs-release</url>
<releases>
<enabled>true</enabled>
</releases>
Expand All @@ -271,7 +280,7 @@
</repository>
<repository>
<id>snapshots</id>
<url>https://maven.thecodelabs.de/artifactory/TheCodeLabs-snapshots</url>
<url>https://maven.thecodedev.de/artifactory/TheCodeLabs-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
Expand Down
18 changes: 9 additions & 9 deletions PlayWall/src/main/java/de/tobias/playpad/AppUserInfoStrings.java
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package de.tobias.playpad;

public class AppUserInfoStrings {
import de.thecodelabs.utils.application.ApplicationInfo;

public static final String WEBSITE = "Website";
public static final String REPOSITORY = "Repository";
public interface AppUserInfoStrings extends ApplicationInfo.CustomUserInfo {

public static final String PLUGINS_URL_STABLE = "PluginsURL.Stable";
public static final String PLUGINS_URL_BETA = "PluginsURL.Beta";
String website();

public static final String CHANGELOG_URL = "ChangelogURL";
public static final String UPDATER_PROGRAM = "UpdaterProgram";
String repository();

public static final String SERVER = "Server";
public static final String ACCOUNT_REGISTER = "AccountRegister";
String changelogURL();

String server();

String accountRegister();
}
Loading

0 comments on commit 75799d1

Please sign in to comment.