Skip to content
Snippets Groups Projects
Commit 3b136296 authored by Mark Winter's avatar Mark Winter
Browse files

Use fixed version and removed json parser from maven project in preparation of...

Use fixed version and removed json parser from maven project in preparation of version "push" from js
parent a71ffd6a
No related branches found
No related tags found
No related merge requests found
<?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
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>net.leverjs</groupId>
<artifactId>Leversc_IJ</artifactId>
<version>${leverjs.package_json.version}</version>
<version>21.5.12</version>
<name>Leversc Viewer</name>
<description>A plugin that can send data to the leversc viewer app</description>
<url>https://leverjs.net</url>
......@@ -24,14 +20,12 @@
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://git-bioimage.coe.drexel.edu/bioimage/leverjs.git</connection>
<developerConnection>scm:git:git@git-bioimage.coe.drexel.edu:bioimage/leverjs.git</developerConnection>
<tag>HEAD</tag>
<url>https://git-bioimage.coe.drexel.edu/bioimage/leverjs</url>
</scm>
<dependencies>
<dependency>
<groupId>net.imagej</groupId>
......@@ -45,34 +39,8 @@
<version>1.6</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.github.iarellano</groupId>
<artifactId>iad-json-properties-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>parse-json-files</id>
<phase>initialize</phase>
<goals>
<goal>load-json-properties</goal>
</goals>
<configuration>
<skip>false</skip>
<prefix>leverjs.</prefix>
<files>
<file>
<prefix>package_json.</prefix>
<failIfFileNotFound>true</failIfFileNotFound>
<filePath>../../../package.json</filePath>
</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
......@@ -83,11 +51,13 @@
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
<id>make-assembly</id>
<!-- this is used for inheritance merges -->
<phase>package</phase>
<!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment