diff --git a/pom.xml b/pom.xml index f7517122b204c871047e498711fb41cecfdd5bb2..6180db8f8aa8d20f32edb7ea433db19002c59b97 100644 --- a/pom.xml +++ b/pom.xml @@ -1,24 +1,24 @@ <?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"> + 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> <!-- Inherited Icy Parent POM --> <parent> - <artifactId>pom-icy</artifactId> <groupId>org.bioimageanalysis.icy</groupId> - <version>2.0.0</version> - </parent> + <artifactId>pom-icy</artifactId> + <version>2.2.0</version> + </parent> <!-- Project Information --> <artifactId>msgpack-core</artifactId> - <version>0.9.1</version> + <version>1.0.0</version> <packaging>jar</packaging> <name>MsgPack Core</name> - <description>The MsgPack Core library for Icy. </description> + <description>The MsgPack Core library for Icy.</description> <inceptionYear>2022</inceptionYear> <organization> @@ -54,32 +54,16 @@ <!-- Project properties --> <properties> - <artifact-to-include>msgpack-core</artifact-to-include> + <artifact-to-extract>msgpack-core</artifact-to-extract> </properties> - <profiles> - <profile> - <id>icy-plugin-extract-library</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - </profile> - </profiles> - <!-- List of project's dependencies --> <dependencies> - <!-- The core of Icy --> <dependency> - <groupId>org.bioimageanalysis.icy</groupId> - <artifactId>icy-kernel</artifactId> - <version>${icy-kernel.version}</version> + <groupId>org.msgpack</groupId> + <artifactId>msgpack-core</artifactId> + <version>0.9.3</version> </dependency> - - <dependency> - <groupId>org.msgpack</groupId> - <artifactId>msgpack-core</artifactId> - <version>0.9.1</version> - </dependency> </dependencies> <!-- Icy Maven repository (to find parent POM) -->