Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • l2j/l2j-server-login
1 result
Show changes
Commits on Source (2)
  • Zoey76's avatar
    Dependency Update · 24b12abe
    Zoey76 authored
    Fixing minor warning during compilation.
    24b12abe
  • Zoey76's avatar
    Fixing Warning · 8768c094
    Zoey76 authored
    Annotation processing is enabled because one or more processors were
    found on the class path. A future release of javac may disable
    annotation processing unless at least one processor is specified by name
    (-processor), or a search path is specified (--processor-path,
    --processor-module-path), or annotation processing is enabled explicitly
    (-proc:only, -proc:full).
    Use -Xlint:-options to suppress this message.
    Use -proc:none to disable annotation processing.
    8768c094
...@@ -2,20 +2,20 @@ image: eclipse-temurin:21.0.1_12-jdk-ubi9-minimal ...@@ -2,20 +2,20 @@ image: eclipse-temurin:21.0.1_12-jdk-ubi9-minimal
pipelines: pipelines:
default: default:
- step: - step:
caches: caches:
- maven - maven
script: script:
- /bin/sh mvnw install - /bin/sh mvnw install
artifacts: artifacts:
- target/*.zip - target/*.zip
- step: - step:
deployment: Production deployment: Production
script: script:
- pipe: atlassian/ftp-deploy:0.3.7 - pipe: atlassian/ftp-deploy:0.6.0
variables: variables:
USER: $FTP_USER USER: $FTP_USER
PASSWORD: $FTP_PASSWORD PASSWORD: $FTP_PASSWORD
SERVER: $FTP_HOST SERVER: $FTP_HOST
REMOTE_PATH: $FTP_REMOTE_PATH REMOTE_PATH: $FTP_REMOTE_PATH
LOCAL_PATH: 'target/' LOCAL_PATH: target/
\ No newline at end of file \ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.l2jserver</groupId> <groupId>com.l2jserver</groupId>
<artifactId>l2j-server-login</artifactId> <artifactId>l2j-server-login</artifactId>
<version>2.6.7.0</version> <version>2.6.7.2</version>
<name>L2J Login Server</name> <name>L2J Login Server</name>
<description>L2J Login Server handles the game client authentication and login.</description> <description>L2J Login Server handles the game client authentication and login.</description>
<url>https://bitbucket.org/l2jserver/l2j-server-login/</url> <url>https://bitbucket.org/l2jserver/l2j-server-login/</url>
...@@ -17,9 +17,10 @@ ...@@ -17,9 +17,10 @@
<!-- L2J --> <!-- L2J -->
<l2j-server-commons.version>2.6.7.0</l2j-server-commons.version> <l2j-server-commons.version>2.6.7.0</l2j-server-commons.version>
<!-- Plugins --> <!-- Plugins -->
<dependency-check-maven.version>9.0.2</dependency-check-maven.version> <dependency-check-maven.version>9.0.6</dependency-check-maven.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<maven-assembly-plugin.version>3.6.0</maven-assembly-plugin.version> <maven-assembly-plugin.version>3.6.0</maven-assembly-plugin.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
</properties> </properties>
<licenses> <licenses>
<license> <license>
...@@ -66,13 +67,21 @@ ...@@ -66,13 +67,21 @@
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<finalName>l2jlogin</finalName>
<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<proc>full</proc>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version> <version>${maven-jar-plugin.version}</version>
<configuration> <configuration>
<finalName>l2jlogin</finalName>
<archive> <archive>
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
......