hisrc-higherjaxb-maven-plugin
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.patrodyne.jvnet</groupId> <artifactId>hisrc-higherjaxb-maven-plugin</artifactId> <version>2.2.1</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.patrodyne.jvnet</groupId> <artifactId>hisrc-higherjaxb-maven-plugin-project</artifactId> <version>2.2.1</version> </parent> <artifactId>hisrc-higherjaxb-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>HiSrc HigherJAXB Plugin</name> <url>https://github.com/patrodyne/hisrc-higherjaxb</url> <prerequisites> <maven>${maven-min.version}</maven> </prerequisites> <properties> <root.basedir>${basedir}/..</root.basedir> </properties> <dependencies> <!-- HiSrc HigherJAXB Maven dependencies --> <dependency> <groupId>org.patrodyne.jvnet</groupId> <artifactId>hisrc-higherjaxb-maven-plugin-core</artifactId> </dependency> <dependency> <groupId>org.patrodyne.jvnet</groupId> <artifactId>hisrc-higherjaxb40-maven-plugin</artifactId> </dependency> <!-- Maven JSR-330 Dependency Injection --> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <!-- Maven dependencies --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-connector-basic</artifactId> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-transport-file</artifactId> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-transport-http</artifactId> </dependency> <!-- SLF4J dependencies --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.patrodyne.jvnet</groupId> <artifactId>hisrc-basicjaxb-plugins</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.patrodyne.jvnet</groupId> <artifactId>hisrc-higherjaxb-maven-plugin-testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>compile</defaultGoal> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> <resource> <filtering>false</filtering> <directory>${project.build.directory}/generated-resources/jaxb-xjc-runtime</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack</id> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-xjc</artifactId> <version>${jaxb-imp.version}</version> <classifier>sources</classifier> <type>jar</type> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/generated-resources/jaxb-xjc-runtime</outputDirectory> <includes>com/sun/tools/xjc/runtime/*.java</includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> <configuration> <ignoredUnusedDeclaredDependencies> <ignoredUnusedDeclaredDependency>org.slf4j:jcl-over-slf4j:jar:</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> </plugins> </reporting> </project>