JPushover11/pom.xml

232 lines
6.6 KiB
XML
Raw Permalink Normal View History

<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">
2015-01-07 13:16:55 +01:00
<modelVersion>4.0.0</modelVersion>
<groupId>de.svenkubiak</groupId>
<artifactId>jpushover11</artifactId>
2023-07-17 14:18:31 +02:00
<version>7.0.10-SNAPSHOT</version>
2015-01-07 13:16:55 +01:00
<packaging>jar</packaging>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
2015-02-13 08:09:58 +01:00
<distribution>repo</distribution>
2015-01-07 13:16:55 +01:00
</license>
</licenses>
<developers>
<developer>
<name>Sven Kubiak</name>
<email>sk@svenkubiak.de</email>
</developer>
</developers>
<properties>
<java.version>11</java.version>
2015-01-07 13:16:55 +01:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<scm>
<connection>scm:git:git@github.com:svenkubiak/JPushover.git</connection>
<developerConnection>scm:git:git@github.com:svenkubiak/JPushover.git</developerConnection>
<url>git@github.com:svenkubiak/JPushover.git</url>
<tag>HEAD</tag>
2015-11-29 10:35:32 +01:00
</scm>
2015-01-07 13:16:55 +01:00
<name>JPushover</name>
2023-07-17 13:41:05 +02:00
<description>Zero-dependency convenient class for sending messages to
Pushover in Java project</description>
2015-01-07 20:43:03 +01:00
<url>https://github.com/svenkubiak/JPushover</url>
2015-01-07 13:16:55 +01:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2023-05-12 09:18:16 +02:00
<version>3.11.0</version>
2015-01-07 13:16:55 +01:00
<configuration>
2018-10-06 07:49:05 +02:00
<source>${java.version}</source>
<target>${java.version}</target>
2015-01-07 13:16:55 +01:00
<debug>false</debug>
</configuration>
</plugin>
2018-10-06 13:44:18 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
2023-07-16 19:19:36 +02:00
<version>3.3.0</version>
2018-10-06 13:44:18 +02:00
<configuration>
<rules>
<DependencyConvergence>
<uniqueVersions>false</uniqueVersions>
</DependencyConvergence>
</rules>
</configuration>
<executions>
<execution>
<id>enforce</id>
<goals>
<goal>enforce</goal>
</goals>
<phase>validate</phase>
</execution>
<execution>
<id>enforce-ban-circular-dependencies</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<banCircularDependencies />
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
2023-06-12 13:19:50 +02:00
<version>1.7.0</version>
2018-10-06 13:44:18 +02:00
</dependency>
</dependencies>
</plugin>
2023-01-05 15:08:22 +01:00
<plugin>
2023-07-17 13:41:05 +02:00
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>8.3.1</version>
<configuration>
<cveValidForHours>12</cveValidForHours>
<failBuildOnCVSS>1</failBuildOnCVSS>
<!--
2022-06-26 16:04:11 +02:00
<suppressionFiles>
2023-07-17 13:41:05 +02:00
<suppressionFile>${maven.multiModuleProjectDirectory}/owasp-suppression.xml</suppressionFile>
2022-06-26 16:04:11 +02:00
</suppressionFiles>
-->
2023-07-17 13:41:05 +02:00
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
<composerAnalyzerEnabled>false</composerAnalyzerEnabled>
<nodeAuditAnalyzerEnabled>false</nodeAuditAnalyzerEnabled>
<nuspecAnalyzerEnabled>false</nuspecAnalyzerEnabled>
<cocoapodsAnalyzerEnabled>false</cocoapodsAnalyzerEnabled>
<golangDepEnabled>false</golangDepEnabled>
</configuration>
2015-01-07 13:16:55 +01:00
</plugin>
2015-01-21 08:20:28 +01:00
<plugin>
2021-12-20 08:56:47 +01:00
<groupId>org.sonarsource.scanner.maven</groupId>
2015-01-21 08:20:28 +01:00
<artifactId>sonar-maven-plugin</artifactId>
2021-12-20 08:56:47 +01:00
<version>3.9.1.2184</version>
2015-01-21 08:20:28 +01:00
</plugin>
2015-01-07 13:16:55 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
2023-07-17 13:41:05 +02:00
<version>3.0.1</version>
2015-01-07 13:16:55 +01:00
</plugin>
2015-11-29 10:35:32 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
2023-07-16 19:19:36 +02:00
<version>3.1.1</version>
2015-11-29 10:35:32 +01:00
</plugin>
2015-01-07 13:16:55 +01:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
2023-07-16 19:19:36 +02:00
<version>2.16.0</version>
2015-01-07 13:16:55 +01:00
</plugin>
2015-11-29 10:35:32 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
2023-07-16 19:19:36 +02:00
<version>3.3.1</version>
2015-11-29 10:35:32 +01:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
2015-11-29 10:35:32 +01:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
2023-01-05 15:08:22 +01:00
<version>3.3.0</version>
2015-11-29 10:35:32 +01:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
2023-07-16 19:19:36 +02:00
<version>4.0.0-M9</version>
2015-11-29 10:35:32 +01:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
2023-07-16 19:19:36 +02:00
<version>3.1.1</version>
2015-11-29 10:35:32 +01:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
2023-01-05 15:08:22 +01:00
<version>3.3.0</version>
2015-11-29 10:35:32 +01:00
</plugin>
2015-01-07 13:16:55 +01:00
</plugins>
</build>
2020-07-27 13:35:49 +02:00
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
2023-07-13 12:03:11 +02:00
<version>5.10.0-RC1</version>
2020-07-27 13:35:49 +02:00
<scope>test</scope>
</dependency>
</dependencies>
2015-01-07 13:16:55 +01:00
<distributionManagement>
<repository>
<id>source.devloop.de-damage</id>
<url>https://source.devloop.de/api/packages/damage/maven</url>
</repository>
2015-01-07 13:16:55 +01:00
<snapshotRepository>
<id>source.devloop.de-damage</id>
<url>https://source.devloop.de/api/packages/damage/maven</url>
2015-01-07 13:16:55 +01:00
</snapshotRepository>
</distributionManagement>
<repositories>
2015-01-07 13:16:55 +01:00
<repository>
<id>source.devloop.de-damage</id>
<url>https://source.devloop.de/api/packages/damage/maven</url>
2015-01-07 13:16:55 +01:00
</repository>
</repositories>
2015-01-07 13:16:55 +01:00
<profiles>
<profile>
2023-07-17 14:13:27 +02:00
<id>release</id>
2015-01-07 13:16:55 +01:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
2023-07-17 14:13:27 +02:00
<version>3.1.0</version>
2015-01-07 13:16:55 +01:00
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
2023-07-17 14:15:33 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
2015-01-07 13:16:55 +01:00
</plugins>
</build>
</profile>
</profiles>
2023-07-18 22:24:16 +02:00
</project>