Skip to content

Commit

Permalink
do not use parent pom
Browse files Browse the repository at this point in the history
  • Loading branch information
olenagerasimova committed Dec 15, 2023
1 parent dbbfdb5 commit 46a9167
Showing 1 changed file with 28 additions and 27 deletions.
55 changes: 28 additions & 27 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ https://github.com/artipie/front/LICENSE.txt
-->
<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>
<parent>
<groupId>com.artipie</groupId>
<artifactId>ppom</artifactId>
<version>1.1.0</version>
</parent>
<groupId>com.artipie</groupId>
<artifactId>front</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
Expand Down Expand Up @@ -60,10 +56,23 @@ https://github.com/artipie/front/LICENSE.txt
</distributionManagement>
<properties>
<qulice.license>${project.basedir}/LICENSE.header</qulice.license>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<docker.image.name>artipie/front</docker.image.name>
<javax.json.version>1.1.4</javax.json.version>
<junit-platform.version>5.10.0</junit-platform.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.sparkjava</groupId>
Expand All @@ -88,14 +97,17 @@ https://github.com/artipie/front/LICENSE.txt
<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
<version>${javax.json.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
<version>${javax.json.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.1.3-jre</version>
</dependency>
<dependency>
<groupId>com.amihaiemil.web</groupId>
Expand All @@ -105,47 +117,32 @@ https://github.com/artipie/front/LICENSE.txt
<dependency>
<groupId>com.artipie</groupId>
<artifactId>asto-core</artifactId>
<version>v1.13.0</version>
<version>v1.16.0</version>
</dependency>
<dependency>
<groupId>com.sparkjava</groupId>
<artifactId>spark-core</artifactId>
<version>2.9.3</version>
<version>2.9.4</version>
</dependency>
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-log</artifactId>
<version>0.20.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>2.0.0-alpha5</version>
</dependency>
<dependency>
<groupId>io.github.resilience4j</groupId>
<artifactId>resilience4j-retry</artifactId>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.8.0-alpha2</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.8.0-alpha2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>runtime</scope>
<artifactId>slf4j-reload4j</artifactId>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
Expand Down Expand Up @@ -242,7 +239,11 @@ https://github.com/artipie/front/LICENSE.txt
<artifactId>qulice-maven-plugin</artifactId>
<version>0.19.0</version>
<configuration>
<license>file:${qulice.license}</license>
<excludes combine.children="append">
<exclude>findbugs:.*</exclude>
<exclude>duplicatefinder:.*</exclude>
<exclude>dependencies:.*</exclude>
<exclude>checkstyle:.*/src/test/resources/.*</exclude>
<exclude>pmd:.*/src/test/resources/.*</exclude>
<exclude>checkstyle:.*/src/main/resources/public/.*</exclude>
Expand Down

0 comments on commit 46a9167

Please sign in to comment.