p3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sporniket.p3</groupId> <artifactId>p3</artifactId> <version>5</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"> <modelVersion>4.0.0</modelVersion> <groupId>com.sporniket.p3</groupId> <artifactId>p3</artifactId> <version>5</version> <properties> <url.base>https://github.com/sporniket/p3</url.base> <url.base.site.deploy>file://${user.home}/mvnsites</url.base.site.deploy> <version.jdk>1.8</version.jdk> <!-- maven plugins version --> <version.maven-compiler-plugin>3.5.1</version.maven-compiler-plugin> <version.maven-source-plugin>3.0.1</version.maven-source-plugin> <version.maven-javadoc-plugin>2.10.4</version.maven-javadoc-plugin> <version.maven-project-info-reports-plugin>2.6</version.maven-project-info-reports-plugin> <version.maven-surefire-report-plugin>2.19.1</version.maven-surefire-report-plugin> <version.maven-checkstyle-plugin>2.17</version.maven-checkstyle-plugin> <version.maven-checkstyle-plugin.checkstyle-runtime>7.1</version.maven-checkstyle-plugin.checkstyle-runtime> <!-- required to use recent checkstyle --> <version.maven-pmd-plugin>3.6</version.maven-pmd-plugin> <version.maven-release-plugin>2.5.2</version.maven-release-plugin> <!-- sporniket core version --> <version.sporniket.core>16.08.00</version.sporniket.core> <!-- sporniket sslpoi version --> <version.sporniket.sslpoi>0.2.0</version.sporniket.sslpoi> </properties> <name>P3 : Programmable Properties Processor</name> <description>An utility that manage the processing of properties from a properties file.</description> <url>${url.base}/blob/master/${project.artifactId}</url> <build> <plugins> <!-- Version of Java supported --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${version.maven-compiler-plugin}</version> <configuration> <source>${version.jdk}</source> <target>${version.jdk}</target> </configuration> </plugin> <!-- create a source jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.maven-source-plugin}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- create a javadoc jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.maven-javadoc-plugin}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- release --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${version.maven-release-plugin}</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <pushChanges>false</pushChanges> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${version.maven-project-info-reports-plugin}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${version.maven-checkstyle-plugin}</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${version.maven-checkstyle-plugin.checkstyle-runtime}</version> </dependency> </dependencies> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.maven-javadoc-plugin}</version> <configuration> </configuration> <reportSets> <reportSet> <id>default</id> <configuration> </configuration> <reports> <report>javadoc</report> </reports> </reportSet> <reportSet> <id>aggregate</id> <configuration> </configuration> <reports> <report>aggregate</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${version.maven-surefire-report-plugin}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${version.maven-checkstyle-plugin}</version> <configuration> <configLocation>checkstyle-custom.xml</configLocation> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${version.maven-pmd-plugin}</version> <configuration> <aggregate>true</aggregate> <targetJdk>${version.jdk}</targetJdk> <rulesets> <ruleset>pmd-custom.xml</ruleset> </rulesets> </configuration> </plugin> </plugins> </reporting> <!-- default dependencies versions for the whole project --> <dependencies> <!-- ===INTERNAL DEPENDENCIES --> <!-- ===EXTERNAL DEPENDENCIES (non test) --> <!-- sporniket core --> <dependency> <groupId>com.sporniket.core</groupId> <artifactId>sporniket-core-io</artifactId> <version>${version.sporniket.core}</version> </dependency> <!-- sporniket sslpoi --> <dependency> <groupId>com.sporniket.scripting.sslpoi</groupId> <artifactId>sslpoi-core</artifactId> <version>${version.sporniket.sslpoi}</version> </dependency> <!-- ===TEST DEPENDENCIES --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <licenses> <license> <name>GNU GPL V3</name> <url>http://www.gnu.org/licenses/gpl-3.0.txt</url> <distribution>repo</distribution> <comments>This licence has been selected for the following reason : it has to be used in free and open sources software only.</comments> </license> </licenses> <distributionManagement> <site> <id>localMvnSite-${project.artifactId}</id> <name>${project.name}</name> <url>${url.base.site.deploy}/${project.artifactId}/${project.version}</url> </site> <repository> <id>centralSonatype</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:git:${url.base}.git</connection> <url>${url.base}</url> <tag>v5</tag> </scm> <issueManagement> <system>GitHub.com</system> <url>${url.base}/issues</url> </issueManagement> <organization> <name>Sporniket-Studio.com</name> <url>http://Sporniket-Studio.com</url> </organization> <developers> <developer> <id>sporniket</id> <name>David SPORN</name> <email>david.sporn@sporniket.com</email> <url>http://sporniket.com</url> <organization>Sporniket-Studio.com</organization> <organizationUrl>http://Sporniket-Studio.com</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+1</timezone> <properties> <picUrl>http://avatar.sporniket.com/normal</picUrl> </properties> </developer> </developers> <profiles> <profile> <id>deploy2central</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <executable>${gpg.executable}</executable> <keyname>${gpg.keyname}</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>