caelum-stella-boleto
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>br.com.caelum.stella</groupId> <artifactId>caelum-stella-boleto</artifactId> <version>2.2.2</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> <parent> <groupId>br.com.caelum.stella</groupId> <artifactId>caelum-stella</artifactId> <version>2.2.2</version> </parent> <artifactId>caelum-stella-boleto</artifactId> <packaging>jar</packaging> <name>Stella Boleto</name> <dependencies> <!-- Boleto PDF, PNG e HTML --> <dependency> <groupId>br.com.caelum.stella</groupId> <artifactId>caelum-stella-core</artifactId> <version>2.2.2</version> </dependency> <dependency> <groupId>net.sf.jasperreports</groupId> <artifactId>jasperreports</artifactId> <version>6.1.0</version> <exclusions> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <groupId>org.glassfish.jersey.media</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <!-- Código de Barras --> <dependency> <groupId>net.sourceforge.barbecue</groupId> <artifactId>barbecue</artifactId> <version>1.5-beta1</version> </dependency> <!-- Testes do PDF --> <dependency> <groupId>pdfbox</groupId> <artifactId>pdfbox</artifactId> <version>0.7.3</version> <scope>test</scope> </dependency> <!-- Boleto HTML --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> <optional>true</optional> </dependency> </dependencies> <profiles> <profile> <id>doclint-java8-disable</id> <activation> <jdk>[1.8,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <pluginManagement> <plugins> <plugin> <groupId>net.sourceforge.maven-taglib</groupId> <artifactId>maven-taglib-plugin</artifactId> <version>2.4</version> <executions> <execution> <goals> <goal>taglibdocjar</goal> </goals> </execution> </executions> </plugin> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>jasperreports-maven-plugin</artifactId> <versionRange>[1.0-beta-2,)</versionRange> <goals> <goal>compile-reports</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>net.sourceforge.maven-taglib</groupId> <artifactId>maven-taglib-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jasperreports-maven-plugin</artifactId> <version>1.0-beta-2</version> <configuration> <sourceDirectory>src/main/resources</sourceDirectory> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <compiler>net.sf.jasperreports.engine.design.JRJdtCompiler</compiler> </configuration> <dependencies> <dependency> <groupId>net.sf.jasperreports</groupId> <artifactId>jasperreports</artifactId> <version>6.1.0</version> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>servlet-api</artifactId> <version>3.0.20100224</version> </dependency> </dependencies> <executions> <execution> <phase>compile</phase> <goals> <goal>compile-reports</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>jaspersoft-third-party</id> <url>https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/</url> </repository> </repositories> <pluginRepositories> <!-- JasperSoft, they modified a standard library for their own special needs --> <pluginRepository> <id>jaspersoft-third-party</id> <url>https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/</url> </pluginRepository> </pluginRepositories> </project>