dib.jbidibc-exchange.1.9.4.source-code.pom.xml Maven / Gradle / Ivy
<?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> <parent> <groupId>org.bidib.jbidib</groupId> <artifactId>jbidib-parent</artifactId> <version>1.9.4</version> </parent> <artifactId>jbidibc-exchange</artifactId> <packaging>jar</packaging> <name>jBiDiB :: jbidibc Exchange</name> <description>jBiDiB jbidibc Echange POM</description> <dependencies> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>org.bidib.jbidib</groupId> <artifactId>jbidibc</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <!-- required by xmlunit --> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- <plugin> <groupId>net.sf.xsltmp</groupId> <artifactId>xslt-generator-maven-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>transform-bidib</id> <goals> <goal>many-to-many</goal> </goals> <configuration> <xslTemplate>src/main/resources/xsd/bidib.xslt</xslTemplate> <srcDir>src/main/xml</srcDir> <srcIncludes>BiDiBProducts/Products*.bidib</srcIncludes> <addDestDirTo>resources</addDestDirTo> <destDir>${project.build.directory}/generated-resources/xml</destDir> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>${xalan-version}</version> </dependency> </dependencies> </plugin> --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>xjc</id> <goals> <goal>xjc</goal> </goals> <configuration> <arguments>-extension -Xcommons-lang -Xfluent-api</arguments> <schemaDirectory>${project.basedir}/src/main/resources/xsd</schemaDirectory> <bindingFiles>bindings.xjb</bindingFiles> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> </dependency> <dependency> <groupId>org.jvnet.jaxb2_commons</groupId> <artifactId>jaxb2-commons-lang</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>org.jvnet.jaxb2_commons</groupId> <artifactId>jaxb2-fluent-api</artifactId> <version>3.0</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <includePom>true</includePom> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-resources/xml/</source> <source>${project.basedir}/src/main/xjb/</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>format-resources</id> <build> <plugins> <!-- format XML files --> <plugin> <groupId>org.technicalsoftwareconfigurationmanagement.maven-plugin</groupId> <artifactId>tscm-maven-plugin</artifactId> <configuration> <includes> <include>**/*.xml</include> </includes> <excludes> <exclude>**/main/xml/bidib/**</exclude> <exclude>**/resources/bidib/**</exclude> <exclude>**/resources/xsd/**</exclude> <exclude>**/target/**</exclude> <exclude>**/test-output/**</exclude> <exclude>**/codestyle.xml</exclude> <exclude>checkstyle-config.xml</exclude> <exclude>**/OSGI-INF/**</exclude> <exclude>**/.idea/**</exclude> </excludes> </configuration> <executions> <execution> <phase>test</phase> <goals> <goal>xmlFormatter</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy