-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: upgrade org.fugerit.java:fj-core from 8.6.2-SNAPSHOT to 8.6.2
Snyk has created this PR to upgrade org.fugerit.java:fj-core from 8.6.2-SNAPSHOT to 8.6.2. See this package in maven: org.fugerit.java:fj-core See this project in Snyk: https://app.snyk.io/org/fugerit79/project/d64d020c-aeea-44e3-b422-adc1d6068d74?utm_source=github&utm_medium=referral&page=upgrade-pr
- Loading branch information
Showing
1 changed file
with
158 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,160 +1,160 @@ | ||
<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> | ||
|
||
<artifactId>fj-lib</artifactId> | ||
|
||
<parent> | ||
<groupId>org.fugerit.java</groupId> | ||
<artifactId>fj-bom</artifactId> | ||
<version>1.6.5</version> | ||
<relativePath></relativePath> | ||
</parent> | ||
|
||
<version>8.6.2-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>fj-lib</name> | ||
<description>Fugerit Java Library for JDK 1.8 and up</description> | ||
<url>https://www.fugerit.org/perm/jupiter/</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<java-version-compliance>8</java-version-compliance> | ||
<maven.compiler.source>${java-version-compliance}</maven.compiler.source> | ||
<maven.compiler.target>${java-version-compliance}</maven.compiler.target> | ||
<maven.compiler.release>${java-version-compliance}</maven.compiler.release> | ||
<javax-rs-api-version>2.1.1</javax-rs-api-version> | ||
<fj-version>${project.version}</fj-version> | ||
<awaitility-version>4.2.0</awaitility-version> | ||
</properties> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<organization> | ||
<url>https://www.fugerit.org</url> | ||
<name>Fugerit</name> | ||
</organization> | ||
|
||
<developers> | ||
<developer> | ||
<name>Matteo Franci a.k.a. Fugerit</name> | ||
<email>[email protected]</email> | ||
<url>https://www.fugerit.org</url> | ||
<timezone>+1</timezone> | ||
<organization>Fugerit</organization> | ||
<organizationUrl>https://www.fugerit.org</organizationUrl> | ||
<roles> | ||
<role>IT Senior Consultant</role> | ||
<role>Senior Software Architect</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<name>Daneel</name> | ||
<email>[email protected]</email> | ||
<organization>Fugerit</organization> | ||
<organizationUrl>https://www.fugerit.org</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/fugerit-org/fj-lib.git</connection> | ||
<developerConnection>scm:git:ssh://github.com/fugerit-org/fj-lib.git</developerConnection> | ||
<url>https://github.com/fugerit-org/fj-lib.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/fugerit-org/fj-lib/issues</url> | ||
</issueManagement> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<modules> | ||
<module>fj-core</module> | ||
<module>fj-core-jvfs</module> | ||
<module>fj-tool</module> | ||
</modules> | ||
|
||
<dependencyManagement> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.fugerit.java</groupId> | ||
<artifactId>fj-core</artifactId> | ||
<version>${fj-version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.fugerit.java</groupId> | ||
<artifactId>fj-core-jvfs</artifactId> | ||
<version>${fj-version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
</dependencyManagement> | ||
|
||
<build> | ||
|
||
<pluginManagement> | ||
|
||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>${mvn-jar-version}</version> | ||
</plugin> | ||
|
||
</plugins> | ||
|
||
</pluginManagement> | ||
|
||
</build> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.hsqldb</groupId> | ||
<artifactId>hsqldb</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.awaitility</groupId> | ||
<artifactId>awaitility</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
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> | ||
|
||
<artifactId>fj-lib</artifactId> | ||
|
||
<parent> | ||
<groupId>org.fugerit.java</groupId> | ||
<artifactId>fj-bom</artifactId> | ||
<version>1.6.5</version> | ||
<relativePath/> | ||
</parent> | ||
|
||
<version>8.6.2-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<name>fj-lib</name> | ||
<description>Fugerit Java Library for JDK 1.8 and up</description> | ||
<url>https://www.fugerit.org/perm/jupiter/</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<java-version-compliance>8</java-version-compliance> | ||
<maven.compiler.source>${java-version-compliance}</maven.compiler.source> | ||
<maven.compiler.target>${java-version-compliance}</maven.compiler.target> | ||
<maven.compiler.release>${java-version-compliance}</maven.compiler.release> | ||
<javax-rs-api-version>2.1.1</javax-rs-api-version> | ||
<fj-version>8.6.2</fj-version> | ||
<awaitility-version>4.2.0</awaitility-version> | ||
</properties> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<organization> | ||
<url>https://www.fugerit.org</url> | ||
<name>Fugerit</name> | ||
</organization> | ||
|
||
<developers> | ||
<developer> | ||
<name>Matteo Franci a.k.a. Fugerit</name> | ||
<email>[email protected]</email> | ||
<url>https://www.fugerit.org</url> | ||
<timezone>+1</timezone> | ||
<organization>Fugerit</organization> | ||
<organizationUrl>https://www.fugerit.org</organizationUrl> | ||
<roles> | ||
<role>IT Senior Consultant</role> | ||
<role>Senior Software Architect</role> | ||
</roles> | ||
</developer> | ||
<developer> | ||
<name>Daneel</name> | ||
<email>[email protected]</email> | ||
<organization>Fugerit</organization> | ||
<organizationUrl>https://www.fugerit.org</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/fugerit-org/fj-lib.git</connection> | ||
<developerConnection>scm:git:ssh://github.com/fugerit-org/fj-lib.git</developerConnection> | ||
<url>https://github.com/fugerit-org/fj-lib.git</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/fugerit-org/fj-lib/issues</url> | ||
</issueManagement> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<modules> | ||
<module>fj-core</module> | ||
<module>fj-core-jvfs</module> | ||
<module>fj-tool</module> | ||
</modules> | ||
|
||
<dependencyManagement> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.fugerit.java</groupId> | ||
<artifactId>fj-core</artifactId> | ||
<version>${fj-version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.fugerit.java</groupId> | ||
<artifactId>fj-core-jvfs</artifactId> | ||
<version>${fj-version}</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
</dependencyManagement> | ||
|
||
<build> | ||
|
||
<pluginManagement> | ||
|
||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>${mvn-jar-version}</version> | ||
</plugin> | ||
|
||
</plugins> | ||
|
||
</pluginManagement> | ||
|
||
</build> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.hsqldb</groupId> | ||
<artifactId>hsqldb</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.awaitility</groupId> | ||
<artifactId>awaitility</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
</project> |