javapns
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>es.arcadiaconsulting.javapns</groupId> <artifactId>javapns</artifactId> <version>2.2-json</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/maven-v4_0_0.xsd"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>es.arcadiaconsulting.javapns</groupId> <artifactId>javapns</artifactId> <packaging>jar</packaging> <version>2.2-json</version> <name>JavaPNS - RE</name> <description>JavaPNS branch with refactoring of org.json package to a javapns.json pacakge</description> <url>https://github.com/ArcadiaConsulting/javapns-json-refactor</url> <inceptionYear>2013</inceptionYear> <licenses> <license> <name>GNU LESSER GENERAL PUBLIC LICENSE</name> <url>https://www.gnu.org/licenses/lgpl.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@https://github.com/ArcadiaConsulting/javapns-json-refactor.git</connection> <developerConnection>scm:git:git@github.com:ArcadiaConsulting/javapns-json-refactor.git</developerConnection> <url>git@github.com:ArcadiaConsulting/javapns-json-refactor.git</url> </scm> <developers> <developer> <id>gonzalogomezgarcia</id> <name>Gonzalo Gómez García</name> <email>gonzalo@arcadiaconsulting.es</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> <exclusions> <exclusion> <artifactId>jms</artifactId> <groupId>javax.jms</groupId> </exclusion> <exclusion> <artifactId>jmxtools</artifactId> <groupId>com.sun.jdmk</groupId> </exclusion> <exclusion> <artifactId>jmxri</artifactId> <groupId>com.sun.jmx</groupId> </exclusion> <exclusion> <artifactId>mail</artifactId> <groupId>javax.mail</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>bouncycastle</groupId> <artifactId>bcprov-jdk16</artifactId> <version>140</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>dev</id> <build> <plugins> <plugin> <groupId>org.zeroturnaround</groupId> <artifactId>jrebel-maven-plugin</artifactId> <executions> <execution> <id>generate-rebel-xml</id> <phase>process-resources</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> <configuration> <relativePath>../</relativePath> <rootPath>$${javapns.sources}</rootPath> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>