created all in one jar for gui application.
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user