archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entando-archetype-bundle-content
Show all versions of entando-archetype-bundle-content
Content Type Bundle Archetype for Entando.
<?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> <artifactId>${artifactId}</artifactId> <groupId>${groupId}</groupId> <packaging>war</packaging> <name>Entando Bundle: ${artifactId}</name> <description>CHANGE ME! Write some quick and useful info.</description> <developers> <developer> <id>myUsername</id> <name>John J. Doe</name> <email>[email protected]</email> </developer> </developers> <url>http://www.entando.com/</url> <properties> <project.parent.build.directory>../../target</project.parent.build.directory> <project.parent.basedir>../..</project.parent.basedir> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.3</version><!--$NO-MVN-MAN-VER$ --> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0-beta-1</version> <executions> <execution> <id>enforce-versions</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.0.0</version> </requireMavenVersion> <requireJavaVersion> <version>1.8</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>