Bianca Mac
4 years ago
12 changed files with 149 additions and 117 deletions
-
2.gitignore
-
3health_data_export/.gitignore
-
198health_data_export/dependency-reduced-pom.xml
-
BINhealth_data_export/health_data_export-7.jar
-
16health_data_export/macos.entitlements
-
BINhealth_data_export/res/application/RI_Logo_blau_en_short_mac.icns
-
2health_data_export/res/application/style.css
-
38health_data_export/src/application/UICoordinator.java
-
2health_data_export/src/application/res/Text.java
-
BINhealth_data_export/target/health_data_export-7.jar
-
5health_data_export/target/maven-archiver/pom.properties
-
BINhealth_data_export/target/original-health_data_export-7.jar
@ -1 +1,4 @@ |
|||
/target/ |
|||
/tmp/ |
|||
/HealthTool.app/ |
|||
/HealthTool-1.1.dmg |
@ -1,99 +1,99 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|||
<modelVersion>4.0.0</modelVersion> |
|||
<groupId>health_data_export</groupId> |
|||
<artifactId>health_data_export</artifactId> |
|||
<version>7</version> |
|||
<build> |
|||
<sourceDirectory>src</sourceDirectory> |
|||
<resources> |
|||
<resource> |
|||
<directory>src</directory> |
|||
<excludes> |
|||
<exclude>**/*.java</exclude> |
|||
</excludes> |
|||
</resource> |
|||
</resources> |
|||
<pluginManagement> |
|||
<plugins> |
|||
<plugin> |
|||
<groupId>org.eclipse.cbi.maven.plugins</groupId> |
|||
<artifactId>eclipse-dmg-packager</artifactId> |
|||
<version>1.3.0</version> |
|||
</plugin> |
|||
</plugins> |
|||
</pluginManagement> |
|||
<plugins> |
|||
<plugin> |
|||
<artifactId>maven-compiler-plugin</artifactId> |
|||
<version>3.8.1</version> |
|||
<configuration> |
|||
<source>8</source> |
|||
<target>8</target> |
|||
</configuration> |
|||
</plugin> |
|||
<plugin> |
|||
<groupId>org.eclipse.cbi.maven.plugins</groupId> |
|||
<artifactId>eclipse-dmg-packager</artifactId> |
|||
<version>1.3.0</version> |
|||
</plugin> |
|||
<plugin> |
|||
<groupId>org.openjfx</groupId> |
|||
<artifactId>javafx-maven-plugin</artifactId> |
|||
<version>0.0.5</version> |
|||
<configuration> |
|||
<mainClass>health_data_export/application.SuperMain</mainClass> |
|||
</configuration> |
|||
</plugin> |
|||
<plugin> |
|||
<artifactId>maven-eclipse-plugin</artifactId> |
|||
<version>2.9</version> |
|||
<configuration> |
|||
<downloadSources>true</downloadSources> |
|||
<downloadJavadocs>false</downloadJavadocs> |
|||
</configuration> |
|||
</plugin> |
|||
<plugin> |
|||
<artifactId>maven-shade-plugin</artifactId> |
|||
<version>2.3</version> |
|||
<executions> |
|||
<execution> |
|||
<phase>package</phase> |
|||
<goals> |
|||
<goal>shade</goal> |
|||
</goals> |
|||
<configuration> |
|||
<transformers> |
|||
<transformer> |
|||
<mainClass>application.SuperMain</mainClass> |
|||
</transformer> |
|||
</transformers> |
|||
</configuration> |
|||
</execution> |
|||
</executions> |
|||
</plugin> |
|||
</plugins> |
|||
</build> |
|||
<repositories> |
|||
<repository> |
|||
<id>eclipse cbi</id> |
|||
<url>https://repo.eclipse.org/content/repositories/cbi-releases</url> |
|||
</repository> |
|||
</repositories> |
|||
<pluginRepositories> |
|||
<pluginRepository> |
|||
<id>eclipse cbi</id> |
|||
<url>https://repo.eclipse.org/content/repositories/cbi-releases</url> |
|||
</pluginRepository> |
|||
</pluginRepositories> |
|||
<dependencies> |
|||
<dependency> |
|||
<groupId>org.openjfx</groupId> |
|||
<artifactId>javafx</artifactId> |
|||
<version>11</version> |
|||
<type>pom</type> |
|||
<scope>compile</scope> |
|||
</dependency> |
|||
</dependencies> |
|||
</project> |
|||
|
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|||
<modelVersion>4.0.0</modelVersion> |
|||
<groupId>health_data_export</groupId> |
|||
<artifactId>health_data_export</artifactId> |
|||
<version>7</version> |
|||
<build> |
|||
<sourceDirectory>src</sourceDirectory> |
|||
<resources> |
|||
<resource> |
|||
<directory>src</directory> |
|||
<excludes> |
|||
<exclude>**/*.java</exclude> |
|||
</excludes> |
|||
</resource> |
|||
</resources> |
|||
<pluginManagement> |
|||
<plugins> |
|||
<plugin> |
|||
<groupId>org.eclipse.cbi.maven.plugins</groupId> |
|||
<artifactId>eclipse-dmg-packager</artifactId> |
|||
<version>1.3.0</version> |
|||
</plugin> |
|||
</plugins> |
|||
</pluginManagement> |
|||
<plugins> |
|||
<plugin> |
|||
<artifactId>maven-compiler-plugin</artifactId> |
|||
<version>3.8.1</version> |
|||
<configuration> |
|||
<source>8</source> |
|||
<target>8</target> |
|||
</configuration> |
|||
</plugin> |
|||
<plugin> |
|||
<groupId>org.eclipse.cbi.maven.plugins</groupId> |
|||
<artifactId>eclipse-dmg-packager</artifactId> |
|||
<version>1.3.0</version> |
|||
</plugin> |
|||
<plugin> |
|||
<groupId>org.openjfx</groupId> |
|||
<artifactId>javafx-maven-plugin</artifactId> |
|||
<version>0.0.5</version> |
|||
<configuration> |
|||
<mainClass>health_data_export/application.SuperMain</mainClass> |
|||
</configuration> |
|||
</plugin> |
|||
<plugin> |
|||
<artifactId>maven-eclipse-plugin</artifactId> |
|||
<version>2.9</version> |
|||
<configuration> |
|||
<downloadSources>true</downloadSources> |
|||
<downloadJavadocs>false</downloadJavadocs> |
|||
</configuration> |
|||
</plugin> |
|||
<plugin> |
|||
<artifactId>maven-shade-plugin</artifactId> |
|||
<version>2.3</version> |
|||
<executions> |
|||
<execution> |
|||
<phase>package</phase> |
|||
<goals> |
|||
<goal>shade</goal> |
|||
</goals> |
|||
<configuration> |
|||
<transformers> |
|||
<transformer> |
|||
<mainClass>application.SuperMain</mainClass> |
|||
</transformer> |
|||
</transformers> |
|||
</configuration> |
|||
</execution> |
|||
</executions> |
|||
</plugin> |
|||
</plugins> |
|||
</build> |
|||
<repositories> |
|||
<repository> |
|||
<id>eclipse cbi</id> |
|||
<url>https://repo.eclipse.org/content/repositories/cbi-releases</url> |
|||
</repository> |
|||
</repositories> |
|||
<pluginRepositories> |
|||
<pluginRepository> |
|||
<id>eclipse cbi</id> |
|||
<url>https://repo.eclipse.org/content/repositories/cbi-releases</url> |
|||
</pluginRepository> |
|||
</pluginRepositories> |
|||
<dependencies> |
|||
<dependency> |
|||
<groupId>org.openjfx</groupId> |
|||
<artifactId>javafx</artifactId> |
|||
<version>11</version> |
|||
<type>pom</type> |
|||
<scope>compile</scope> |
|||
</dependency> |
|||
</dependencies> |
|||
</project> |
|||
|
@ -0,0 +1,16 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|||
<plist version="1.0"> |
|||
<dict> |
|||
<key>com.apple.security.cs.allow-jit</key> |
|||
<true/> |
|||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> |
|||
<true/> |
|||
<key>com.apple.security.cs.disable-executable-page-protection</key> |
|||
<true/> |
|||
<key>com.apple.security.cs.disable-library-validation</key> |
|||
<true/> |
|||
<key>com.apple.security.cs.allow-dyld-environment-variables</key> |
|||
<true/> |
|||
</dict> |
|||
</plist> |
@ -1,5 +0,0 @@ |
|||
#Generated by Maven |
|||
#Fri May 21 10:51:02 CEST 2021 |
|||
groupId=health_data_export |
|||
artifactId=health_data_export |
|||
version=7 |
Write
Preview
Loading…
Cancel
Save
Reference in new issue