Skip to content
Snippets Groups Projects
Commit 8b3f37c8 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

build of sbgnml module fixed

parent caf12fff
No related branches found
No related tags found
1 merge request!782Resolve "Replace deprecated APIs"
<?xml version="1.0" encoding="UTF-8"?>
<project name="SbgnmlConverter" default="main" basedir=".">
<property environment="env"/>
<property name="build.dir" value="target" />
<property name="mvn.home" value="${env.M2_HOME}" />
<property name="converter.name" value="sbgnml_converter" />
<target name="maven-build">
<exec executable="${mvn.home}/bin/mvn.cmd" >
<arg line="clean" />
</exec>
<exec executable="${mvn.home}/bin/mvn.cmd" >
<arg line="-Dmaven.test.skip=true install" />
</exec>
</target>
<target name="main" depends="maven-build"/>
</project>
\ No newline at end of file
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>jar-with-dependencies</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<useProjectArtifact>true</useProjectArtifact>
<unpack>true</unpack>
<scope>runtime</scope>
<excludes>
</excludes>
<unpackOptions>
<excludes>
<exclude>**/log4j2.xml</exclude>
<exclude>**/log4j2.properties</exclude>
</excludes>
</unpackOptions>
</dependencySet>
</dependencySets>
<files>
<file>
<source>src/main/resources/log4j2.properties</source>
<outputDirectory>.</outputDirectory>
<destName>log4j2.properties</destName>
</file>
</files>
</assembly>
\ No newline at end of file
......@@ -9,31 +9,6 @@
</parent>
<artifactId>converter-SBGNML</artifactId>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<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>
<configuration>
<descriptor>install.xml</descriptor>
<archive>
<manifest>
<mainClass>lcsb.mapviewer.converter.model.sbgnml.console.SbgnmlConsoleConverter</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>central</id>
......
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