Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Instrument Control
Protos
Nomad 3D
nomad-3d-editor
Commits
caf443a6
Commit
caf443a6
authored
Oct 29, 2021
by
Locatelli
Browse files
Running on ubuntu 20.04 LTS
parent
b23c1eac
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
caf443a6
...
...
@@ -2,3 +2,4 @@ target/
.settings/
*.log
*.log.*
/shade/
pom.xml
View file @
caf443a6
...
...
@@ -51,13 +51,45 @@
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.8.1
</version>
<configuration>
<source>
1
0
</source>
<target>
1
0
</target>
<source>
1
1
</source>
<target>
1
1
</target>
<encoding>
Cp1252
</encoding>
</configuration>
</plugin>
<plugin>
<groupId>
org.openjfx
</groupId>
<artifactId>
javafx-maven-plugin
</artifactId>
<version>
0.0.6
</version>
<configuration>
<mainClass>
fr.ill.ics.n3d.Nomad3DEditor
</mainClass>
</configuration>
</plugin>
<!-- Assemble a single jar -->
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-shade-plugin
</artifactId>
<version>
3.2.0
</version>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
shade
</goal>
</goals>
<configuration>
<shadedArtifactAttached>
true
</shadedArtifactAttached>
<shadedClassifierName>
project-classifier
</shadedClassifierName>
<outputFile>
shade\${project.artifactId}.jar
</outputFile>
<transformers>
<transformer
implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"
>
<mainClass>
fr.ill.ics.n3d.Launcher
</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<!-- Assemble a single jar
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
...
...
@@ -87,7 +119,7 @@
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
</project>
\ No newline at end of file
src/main/java/fr/ill/ics/n3d/Launcher.java
0 → 100644
View file @
caf443a6
package
fr.ill.ics.n3d
;
public
class
Launcher
{
public
static
void
main
(
String
[]
args
)
{
Nomad3DEditor
.
main
(
args
);
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment