Release v1.0.0
Initial stable release of the project.
- Includes core modules:
cpm-core,cpm-template - Bundled into a two individual JAR files
- Built with Maven
cpm-core
- Download the
cpm-core-1.0.0.jar. - Place the
cpm-core-1.0.0.jarin a directory inside your project (e.g.,src/main/resources). - Add the following plugin to your
pom.xml:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.4</version>
<executions>
<execution>
<id>install-core</id>
<phase>clean</phase>
<configuration>
<file>${project.basedir}/src/main/resources/cpm-core-1.0.0.jar</file>
<groupId>cz.muni.fi.cpm</groupId>
<artifactId>cpm-core</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>- Run
mvn clean - Add the following dependencies to your
pom.xml:
<dependency>
<groupId>org.openprovenance.prov</groupId>
<artifactId>prov-model</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>cz.muni.fi.cpm</groupId>
<artifactId>cpm-core</artifactId>
<version>1.0.0</version>
</dependency>cpm-template
Important: cpm-template uses cpm-core as its dependency!
- Download the
cpm-template-1.0.0.jar. - Place the
cpm-template-1.0.0.jarin the same directory inside your project. - Add the following execution to the
maven-install-pluginplugin to yourpom.xml:
<execution>
<id>install-template</id>
<phase>clean</phase>
<configuration>
<file>${project.basedir}/src/main/resources/cpm-template-1.0.0.jar</file>
<groupId>cz.muni.fi.cpm</groupId>
<artifactId>cpm-template</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>- Run
mvn clean - Add the following dependencies to your
pom.xml:
<dependency>
<groupId>org.openprovenance.prov</groupId>
<artifactId>prov-interop</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>org.openprovenance.prov</groupId>
<artifactId>prov-nf</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>cz.muni.fi.cpm</groupId>
<artifactId>cpm-template</artifactId>
<version>1.0.0</version>
</dependency>