esec-itext
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>br.com.esec.icpm</groupId> <artifactId>esec-itext</artifactId> <version>1.0.0</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>br.com.esec.icpm</groupId> <artifactId>esec-itext</artifactId> <version>1.0.0</version> <name>Esec Itext Customized</name> <description>This library is used to sign PDFs.</description> <url>http://www.esec.com.br</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Alex Oliveira</name> <email>aoliveira@esec.com.br</email> <organization>E-Sec Segurança de Dados</organization> <organizationUrl>http://www.esec.com.br</organizationUrl> </developer> <developer> <name>Caio Cristo</name> <email>caiocristo@esec.com.br</email> <organization>E-Sec Segurança de Dados</organization> <organizationUrl>http://www.esec.com.br</organizationUrl> </developer> <developer> <name>Cristiano Cristo</name> <email>ccristo@esec.com.br</email> <organization>E-Sec Segurança de Dados</organization> <organizationUrl>http://www.esec.com.br</organizationUrl> </developer> <developer> <name>Marcos Gordinho</name> <email>mgodinho@esec.com.br</email> <organization>E-Sec Segurança de Dados</organization> <organizationUrl>http://www.esec.com.br</organizationUrl> </developer> <developer> <name>Tales Porto</name> <email>tporto@esec.com.br</email> <organization>E-Sec Segurança de Dados</organization> <organizationUrl>http://www.esec.com.br</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:certillion/esec-itext.git</connection> <developerConnection>scm:git:git@github.com:certillion/esec-itext.git</developerConnection> <url>git@github.com:certillion/esec-itext.git</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <compiler.source>1.6</compiler.source> <compiler.target>1.6</compiler.target> </properties> <dependencies> <!-- BouncyCastle --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.47</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcmail-jdk15on</artifactId> <version>1.47</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <version>1.47</version> <scope>compile</scope> </dependency> <!-- JUnit 4 : test Java SE and ME --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> <scope>test</scope> </dependency> <!-- Log4j --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> <scope>test</scope> <exclusions> <exclusion> <groupId>javax.jms</groupId> <artifactId>jms</artifactId> </exclusion> <exclusion> <groupId>com.sun.jdmk</groupId> <artifactId>jmxtools</artifactId> </exclusion> <exclusion> <groupId>com.sun.jmx</groupId> <artifactId>jmxri</artifactId> </exclusion> <exclusion> <groupId>com.sun.jmx</groupId> <artifactId>jmxri</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>evo</groupId> <artifactId>sdk-base</artifactId> <version>1.6.5.03</version> <scope>test</scope> </dependency> <dependency> <groupId>evo</groupId> <artifactId>sdk-provider</artifactId> <version>1.6.5.01</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- COMPILER PLUGIN --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>${compiler.source}</source> <target>${compiler.target}</target> </configuration> </plugin> <!-- JAR PLUGIN --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> </plugin> <!-- SOURCE PLUGIN --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- JAVADOC PLUGIN --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <quiet>true</quiet> <failOnError>false</failOnError> <verbose>false</verbose> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>jcenter</id> <url>https://api.bintray.com/maven/e-sec/Certillion/esec-itext/;publish=1</url> </repository> <snapshotRepository> <id>nexus</id> <url>http://esec-server:8080/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </project>