jibx-bind
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jibx</groupId> <artifactId>jibx-bind</artifactId> <version>1.4.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jibx.config</groupId> <artifactId>main-reactor</artifactId> <version>1.4.2</version> </parent> <groupId>org.jibx</groupId> <artifactId>jibx-bind</artifactId> <packaging>bundle</packaging> <name>jibx-bind - JiBX binding</name> <description>JiBX binding code</description> <profiles> <profile> <id>sonatype-oss-release</id> <build> <!-- ***CAREFUL*** This logic moves the source code to the current project, then does NOT compile it. This way, the api and source are in the repo. --> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-jibx-bind</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/src/main/java</outputDirectory> <resources> <resource> <directory>${coreSourceDir}</directory> <filtering>false</filtering> <includes> <include>org/jibx/binding/**/*.java</include> <include>org/jibx/util/**/*.java</include> </includes> <excludes> <exclude>org/jibx/binding/generator/**/*.java</exclude> <exclude>org/jibx/binding/schema*/**/*.java</exclude> <exclude>org/jibx/custom/**/*.java</exclude> </excludes> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package> !org.jibx.binding.generator.*, <!-- In jibx-tools --> org.jibx.binding.*;version=${project.version}, org.jibx.util.*;version=${project.version}, </Export-Package> <Include-Resource>@${jibxLibDir}/jibx-bind.jar;inline=**</Include-Resource> <Main-Class>org.jibx.binding.Compile</Main-Class> <Class-Path>bcel.jar jibx-run.jar xpp3.jar stax-api.jar wstx-asl.jar</Class-Path> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jibx-run</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.bcel</groupId> <artifactId>bcel</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <exclusions> <exclusion> <groupId>javax.jms</groupId> <artifactId>jms</artifactId> </exclusion> <exclusion> <groupId>com.sun.jmx</groupId> <artifactId>jmxri</artifactId> </exclusion> <exclusion> <groupId>com.sun.jdmk</groupId> <artifactId>jmxtools</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-1.2-api</artifactId> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.10.12</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.thoughtworks.qdox</groupId> <artifactId>qdox</artifactId> <scope>compile</scope> </dependency> </dependencies> </project>