thevpc-common-strings
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.thevpc.common</groupId> <artifactId>thevpc-common-strings</artifactId> <version>1.2.18</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>net.thevpc.common</groupId> <artifactId>thevpc-common-strings</artifactId> <version>1.2.18</version> <packaging>jar</packaging> <name>net.thevpc.common.thevpc-common-strings</name> <url>https://github.com/thevpc/upa/wiki</url> <description> Simple String manipulation Library </description> <scm> <connection>scm:git:git://github.com/thevpc/vpc-common.git</connection> <developerConnection>scm:git:ssh://github.com:thevpc/vpc-common.git</developerConnection> <url>https://github.com/thevpc/vpc-common/tree/master</url> </scm> <organization> <name>vpc open source initiative</name> <url>http://tahabensalah.net</url> </organization> <developers> <developer> <id>vpc</id> <name>Taha Ben Salah</name> <email>taha.bensalah@gmail.com</email> <url>http://tahabensalah.net</url> <organization>thevpc open source initiative</organization> <organizationUrl>http://thevpc.net</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Africa/Tunis</timezone> <properties> <picUrl>https://gravatar.com/avatar/977025550163b4a91397007f6ea9ee17</picUrl> </properties> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <github.global.server>github</github.global.server> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.5.0</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <showDeprecation>true</showDeprecation> <debug>true</debug> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</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.2.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-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.0.2</version> <executions> <execution> <phase>process-sources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${targetdirectory}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>