Skip to content

Commit

Permalink
Distribution management
Browse files Browse the repository at this point in the history
  • Loading branch information
vikulin committed Sep 20, 2023
1 parent b7c3385 commit 510974e
Showing 1 changed file with 34 additions and 23 deletions.
57 changes: 34 additions & 23 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,29 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>zk</groupId>
<artifactId>auth-module</artifactId>
<version>1.6.2-jakarta</version>
<version>1.6.3-jakarta</version>
<packaging>war</packaging>
<properties>
<zk.version>9.6.0.2-jakarta</zk.version>
<springsecurity.version>6.1.4</springsecurity.version>
<hibernate-version>6.3.0.Final</hibernate-version>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<repositories>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/vikulin/auth-module</url>
</repository>
</distributionManagement>

<repositories>
<repository>
<id>ZK EE</id>
<url>http://mavensync.zkoss.org/maven2</url>
Expand All @@ -28,7 +38,8 @@
</repository>
<repository>
<id>com.springsource.repository.bundles.release</id>
<name>SpringSource Enterprise Bundle Repository - SpringSource Releases</name>
<name>SpringSource Enterprise Bundle Repository - SpringSource
Releases</name>
<url>http://repository.springsource.com/maven/bundles/release</url>
</repository>

Expand All @@ -38,7 +49,7 @@
<url>http://repository.springsource.com/maven/bundles/external</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.springframework.security</groupId>
Expand All @@ -50,7 +61,7 @@
<artifactId>spring-security-web</artifactId>
<version>${springsecurity.version}</version>
</dependency>

<!-- ZK -->
<dependency>
<groupId>org.zkoss.zk</groupId>
Expand All @@ -64,9 +75,9 @@
<version>${zk.version}</version>
</dependency>
<dependency>
<groupId>org.zkoss.theme</groupId>
<artifactId>sapphire</artifactId>
<version>9.6.0.2</version>
<groupId>org.zkoss.theme</groupId>
<artifactId>sapphire</artifactId>
<version>9.6.0.2</version>
</dependency>
<!-- extra -->
<dependency>
Expand Down Expand Up @@ -96,21 +107,21 @@
</exclusions>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.30</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.30</version>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down

0 comments on commit 510974e

Please sign in to comment.