Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ef126a0a authored by Achraf Achkari's avatar Achraf Achkari
Browse files

Merge branch 'GOC-Tests' into 'develop'

Fix goc-tests-runner pom

See merge request !20
parents 8860de9d d84078f7
No related branches found
No related tags found
3 merge requests!25Merge branch from develop into master,!23add system testing & ignoreChoicesPredicates & UCUM fixes,!20Fix goc-tests-runner pom
Pipeline #410576 failed
......@@ -55,6 +55,53 @@
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>codegeneration</id>
<phase>prepare-package</phase>
<goals><goal>java</goal></goals>
<configuration>
<mainClass>net.ihe.gazelle.goctests.definitions.application.scripts.ConvertCSV</mainClass>
<arguments>
<argument>${csv}</argument>
<argument>${dest}</argument>
<argument>${type}</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>
net.ihe.gazelle.goctests.interlay.GOCTestEntryCLI
</mainClass>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
......
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