jps
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openbase</groupId> <artifactId>jps</artifactId> <version>3.7.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>org.openbase</groupId> <artifactId>jps</artifactId> <version>3.7.0</version> <name>JPS</name> <inceptionYear>2014</inceptionYear> <description>Java Property Service</description> <url>https://github.com/openbase/jps/wiki</url> <organization> <name>openbase.org</name> <url>https://github.com/openbase</url> </organization> <developers> <developer> <id>DivineThreepwood</id> <name>Marian Pohling</name> <email>divine@openbase.org</email> <url>https://github.com/DivineThreepwood</url> <organization>openbase.org</organization> <organizationUrl>https://github.com/openbase</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>pLeminoq</id> <name>Tamino Huxohl</name> <email>taminoh@ymail.com</email> <url>https://github.com/pLeminoq</url> <organization>openbase.org</organization> <organizationUrl>https://github.com/openbase</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <licenses> <license> <name>LGPLv3</name> <url>https://www.gnu.org/licenses/lgpl.html</url> </license> </licenses> <packaging>jar</packaging> <scm> <connection>scm:git:https://github.com/openbase/jps.git</connection> <developerConnection>scm:git:https://github.com/openbase/jps.git</developerConnection> <url>https://github.com/openbase/jps.git</url> <tag>v3.7.0</tag> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>${java.source.version}</source> <target>${java.target.version}</target> <showDeprecation>true</showDeprecation> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.2.0</version> <configuration> <verbose>false</verbose> <licenseName>lgpl_v3</licenseName> <failOnMissingHeader>true</failOnMissingHeader> <failOnNotUptodateHeader>true</failOnNotUptodateHeader> <canUpdateCopyright>true</canUpdateCopyright> <canUpdateDescription>true</canUpdateDescription> <canUpdateLicense>true</canUpdateLicense> <roots> <root>src/main/java</root> <root>src/test</root> </roots> </configuration> <executions> <execution> <id>first</id> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> </execution> <execution> <id>download-licenses</id> <goals> <goal>download-licenses</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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <configuration> <source>${java.source.version}</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>true</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>deploy</id> <build> <plugins> <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> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.source.version>8</java.source.version> <java.target.version>8</java.target.version> <skipTests>false</skipTests> <logback.version>[1.4,1.5-alpha)</logback.version> <jansi.version>[2.4,2.5-alpha)</jansi.version> <commons.io.version>[2.13,2.14-alpha)</commons.io.version> <org.apache.commons.commons-lang3.version>[3.13,3.14-alpha)</org.apache.commons.commons-lang3.version> <dependency.org.junit.jupiter.version>[5.10,5.11-alpha)</dependency.org.junit.jupiter.version> </properties> <dependencies> <dependency> <!-- contains slf4j-api --> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> </dependency> <!-- used for os independent filesystem access --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> </dependency> <!-- used to resolve os folders and system properties --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${org.apache.commons.commons-lang3.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${dependency.org.junit.jupiter.version}</version> <scope>test</scope> </dependency> <!-- <!– https://mvnrepository.com/artifact/org.junit.vintage/junit-vintage-engine –>--> <!-- <dependency>--> <!-- <groupId>org.junit.vintage</groupId>--> <!-- <artifactId>junit-vintage-engine</artifactId>--> <!-- <version>${dependency.org.junit.jupiter.version}</version>--> <!-- <scope>test</scope>--> <!-- </dependency>--> </dependencies> <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> </project>