oitc-pushover
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.oberdorf-itc</groupId> <artifactId>oitc-pushover</artifactId> <version>0.3.0.1467</version> </dependency>
<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>de.oberdorf-itc</groupId> <artifactId>oitc-pushover</artifactId> <packaging>jar</packaging> <version>0.3.0.1467</version> <name>${project.groupId}:${project.artifactId}</name> <url>https://www.oberdorf-itc.de/</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdk.version>17</jdk.version> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/com.github.sps.pushover.net/pushover-client --> <dependency> <groupId>com.github.sps.pushover.net</groupId> <artifactId>pushover-client</artifactId> <version>1.0.0</version> </dependency> <!-- Logging --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.20.0</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>2.20.0</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.9.1.2184</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <!-- https://maven.apache.org/shared/maven-archiver/ --> <archive> <addMavenDescriptor>false</addMavenDescriptor> <compress>true</compress> <forced>true</forced> <index>false</index> <manifest> <addClasspath>false</addClasspath> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addExtensions>false</addExtensions> </manifest> </archive> </configuration> </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</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration/> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <organization> <name>Michael Oberdorf IT-Consulting</name> <url>https://www.oberdorf-itc.de/</url> </organization> <developers> <developer> <id>Cybcon</id> <name>Michael Oberdorf</name> <email>info@oberdorf-itc.de</email> <organization>Michael Oberdorf IT-Consulting</organization> <url>https://www.oberdorf-itc.de/</url> <organizationUrl>https://www.oberdorf-itc.de/</organizationUrl> </developer> </developers> <issueManagement > <system>Azure DevOps</system> <url>https://dev.azure.com/oberdorf-itc/Access%20Control%20System/_backlogs/backlog/Access%20Control%20System%20Team/Epics</url> </issueManagement> <repositories> <repository> <id>oberdorf-itc</id> <url>https://pkgs.dev.azure.com/oberdorf-itc/_packaging/oberdorf-itc/maven/v1</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <distributionManagement> <repository> <id>ossrh</id> <name>OSSRH Nexus Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <name>OSSRH Nexus Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <scm> <connection>scm:git:https://dev.azure.com/oberdorf-itc/Access%20Control%20System/_git/de.oberdorf-itc.pushover</connection> <developerConnection>scm:git:ssh://ssh.dev.azure.com:v3/oberdorf-itc/Access%20Control%20System/de.oberdorf-itc.pushover</developerConnection> <url>https://dev.azure.com/oberdorf-itc/Access%20Control%20System/_git/de.oberdorf-itc.pushover</url> </scm> <ciManagement /> <description>A wrapper class for the net.pushover.client with the ability to send the pushover message in a background thread.</description> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> </project>