modello-plugins
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.modello</groupId> <artifactId>modello-plugins</artifactId> <version>2.0.0</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>modello</artifactId> <groupId>org.codehaus.modello</groupId> <version>2.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>modello-plugins</artifactId> <packaging>pom</packaging> <name>Modello Plugins</name> <description> Modello Plugins is the main component containing every Modello plugins that are able to generate various types of code and descriptors. </description> <modules> <module>modello-plugin-java</module> <module>modello-plugin-converters</module> <module>modello-plugin-xml</module> <module>modello-plugin-xdoc</module> <module>modello-plugin-xsd</module> <module>modello-plugin-xpp3</module> <module>modello-plugin-stax</module> <module>modello-plugin-jdom</module> <module>modello-plugin-jsonschema</module> <module>modello-plugin-dom4j</module> <module>modello-plugin-jackson</module> <module>modello-plugin-snakeyaml</module> <module>modello-plugin-sax</module> </modules> <dependencies> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> </dependency> <dependency> <groupId>org.codehaus.modello</groupId> <artifactId>modello-core</artifactId> </dependency> <dependency> <groupId>org.codehaus.modello</groupId> <artifactId>modello-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>copy-test-libs</id> <phase>process-test-resources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/test-libs</outputDirectory> <excludeTransitive>true</excludeTransitive> <stripVersion>true</stripVersion> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>