rosetta-project
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.finos.cdm</groupId> <artifactId>rosetta-project</artifactId> <version>6.0.0-dev.61</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"> <parent> <artifactId>cdm-parent</artifactId> <groupId>org.finos.cdm</groupId> <version>6.0.0-dev.61</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>rosetta-project</artifactId> <dependencyManagement> <dependencies> <dependency> <groupId>org.finos.cdm</groupId> <artifactId>cdm-java</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>com.regnosys</groupId> <artifactId>ingest-test-framework</artifactId> <version>${rosetta.bundle.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>com.regnosys.rosetta</groupId> <artifactId>com.regnosys.rosetta.xcore</artifactId> </exclusion> <exclusion> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.prefs</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.junit.platform</groupId> <artifactId>junit-platform-commons</artifactId> <version>${junit-platform-commons.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.finos.cdm</groupId> <artifactId>cdm-java</artifactId> </dependency> <dependency> <groupId>com.regnosys</groupId> <artifactId>ingest-test-framework</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <executions> <execution> <phase>clean</phase> <goals> <goal>clean</goal> </goals> <configuration> <filesets> <fileset> <directory>src/generated</directory> <includes> <include>**/**</include> </includes> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/generated/java/</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-xjc-plugin</artifactId> <executions> <execution> <id>xjc</id> <phase>generate-sources</phase> <goals> <goal>xsdtojava</goal> </goals> <configuration> <sourceRoot>${basedir}/src/generated/java</sourceRoot> <xsdOptions> <xsdOption> <xsd>classpath:/schemas/fpml-5-10/confirmation/fpml-main-5-10.xsd</xsd> <bindingFiles>classpath:/schemas/fpml-5-10/confirmation/bindings.xjb</bindingFiles> <extension>true</extension> </xsdOption> </xsdOptions> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalJOption>${maven-javadoc-plugin.option}</additionalJOption> <excludePackageNames>org.fpml.*;org.w3.*</excludePackageNames> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> <reportSets> <reportSet> <reports><!-- select reports --> <report>index</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.16</version> <reportSets> <reportSet> <reports> <report>third-party-report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>