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 camunda-archetype-cockpit-plugin
Show all versions of camunda-archetype-cockpit-plugin
Plugin for Camunda Cockpit, contains REST-Backend, MyBatis database query, HTML and JavaScript frontend
<?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> <groupId>\${groupId}</groupId> <artifactId>\${artifactId}</artifactId> <version>\${version}</version> <packaging>jar</packaging> <name>Camunda Cockpit Plugin: ${camunda-plugin-name}</name> <description>${camunda-plugin-description} [The project has been generated by the Maven archetype 'camunda-archetype-cockpit-plugin-${project.version}']</description> <url></url> <properties> <camunda.version>${camunda-version}</camunda.version> <!-- Adjust if you want to use Camunda Enterprise Edition (EE): <camunda.version>${camunda-version}-ee</camunda.version> Make sure you also switch to EE repository below --> <!-- This property must be present for the pom.xml to be recognized as a plugin --> <camunda.plugin.category>${camunda-plugin-category}</camunda.plugin.category> <camunda.plugin.screenshot>${camunda-plugin-screenshot}</camunda.plugin.screenshot> <!-- <camunda.plugin.screenshot.1>screenshot2.png</camunda.plugin.screenshot.1> --> <camunda.plugin.testedOnVersion>${camunda-plugin-testedOnVersion}</camunda.plugin.testedOnVersion> <!-- <camunda.plugin.exampleProcessApplicationUrl></camunda.plugin.exampleProcessApplicationUrl> --> <camunda.plugin.language>${camunda-plugin-language}</camunda.plugin.language> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-bom</artifactId> <version>${camunda.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <!-- Cockpit Plugin API, needs to be provided --> <groupId>org.camunda.bpm.webapp</groupId> <artifactId>camunda-webapp</artifactId> <classifier>classes</classifier> <!-- not part of camunda bom --> <version>${camunda.version}</version> <scope>provided</scope> </dependency> <dependency> <!-- process engine, needs to be provided --> <groupId>org.camunda.bpm</groupId> <artifactId>camunda-engine</artifactId> <scope>provided</scope> </dependency> <dependency> <!-- Java EE 6 APIs --> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.197</version> <scope>test</scope> </dependency> <!-- Add your own dependencies here, if in compile scope, they are added to the war --> </dependencies> <repositories> <repository> <id>camunda-bpm-nexus</id> <name>Camunda Maven Repository</name> <url>https://app.camunda.com/nexus/content/groups/public</url> </repository> <!-- enable this for EE dependencies (requires credentials in ~/.m2/settings.xml) <repository> <id>camunda-bpm-nexus-ee</id> <name>Camunda Enterprise Maven Repository</name> <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm-ee</url> </repository> --> </repositories> <build> <finalName>\${project.artifactId}</finalName> <plugins> <plugin> <!-- Deploy to Tomcat using: mvn clean package antrun:run Follow the instructions in build.properties.example to make it work!--> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <configuration> <tasks> <ant antfile="\${basedir}/build.xml"> <target name="install.cockpit.plugin" /> </ant> </tasks> </configuration> </plugin> </plugins> </build> </project>