created all in one jar for gui application.

This commit is contained in:
2014-01-20 13:12:25 +01:00
parent fbe03b7ade
commit 8d37cdbeca
2 changed files with 14 additions and 1 deletions

View File

@@ -23,6 +23,11 @@ To use the FDA libary in an other project use:
</dependency>
```
For the FDA GUI application one need to create a all in one fda jar which is then put into the UI project. To create the jar, go to the
`pom.xml` comment the current `configuration` tag of the `maven-assembly-plugin` section and uncomment the commented configuration.
Afterwards use `mvn clean compile assembly:single` to generate the all in one jar.
After creating the jar, change back the configuration in the `pom.xml`.
## REST
FDA offers a rest service to execute scans. There are 3 distinct service for fda scan, fdaq and cdump.

View File

@@ -248,11 +248,19 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<!-- Specifies the configuration file of the assembly plugin -->
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<!-- <configuration>
<finalName>${project.name}-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<archive>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration> -->
</plugin>
</plugins>