diff options
-rw-r--r-- | pdf-over-gui/pom.xml | 29 | ||||
-rwxr-xr-x | publish.sh | 2 |
2 files changed, 15 insertions, 16 deletions
diff --git a/pdf-over-gui/pom.xml b/pdf-over-gui/pom.xml index 23c21a09..6e635171 100644 --- a/pdf-over-gui/pom.xml +++ b/pdf-over-gui/pom.xml @@ -456,27 +456,27 @@ <profiles> <!-- Note: Build system profile has to come first! Else it overwrites the chosen profile --> - <profile> - <id>windows-64</id> + <profile> + <id>linux-64</id> <activation> <os> - <family>windows</family> + <name>linux</name> <arch>amd64</arch> </os> </activation> <properties> -<!-- <swt.artifactId.32>org.eclipse.swt.win32.win32.x86</swt.artifactId.32>--> - <swt.artifactId.64>org.eclipse.swt.win32.win32.x86_64</swt.artifactId.64> +<!-- <swt.artifactId.32>org.eclipse.swt.gtk.linux.x86</swt.artifactId.32>--> + <swt.artifactId.64>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId.64> <swt.artifactId>${swt.artifactId.64}</swt.artifactId> - <target.name>windows</target.name> + <target.name>linux</target.name> </properties> </profile> <profile> - <id>windows</id> + <id>windows-64</id> <activation> <os> <family>windows</family> - <arch>x86</arch> + <arch>amd64</arch> </os> </activation> <properties> @@ -486,20 +486,19 @@ <target.name>windows</target.name> </properties> </profile> - <profile> - <id>linux-64</id> + <id>windows</id> <activation> <os> - <name>linux</name> - <arch>amd64</arch> + <family>windows</family> + <arch>x86</arch> </os> </activation> <properties> -<!-- <swt.artifactId.32>org.eclipse.swt.gtk.linux.x86</swt.artifactId.32>--> - <swt.artifactId.64>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId.64> +<!-- <swt.artifactId.32>org.eclipse.swt.win32.win32.x86</swt.artifactId.32>--> + <swt.artifactId.64>org.eclipse.swt.win32.win32.x86_64</swt.artifactId.64> <swt.artifactId>${swt.artifactId.64}</swt.artifactId> - <target.name>linux</target.name> + <target.name>windows</target.name> </properties> </profile> <profile> @@ -2,7 +2,7 @@ #### CONFIGURE: ###### PUBLISH_DIR="pdf-over-build" -LOG_DIR="log" +LOG_DIR="/tmp/pdfover_log" CODEBASE_URL="http:\/\/abyss.iaik.tugraz.at\/pdf-over\/" CONTEXT_URL="http:\/\/abyss.iaik.tugraz.at\/pdf-over\/" HOMEPAGE_URL="http:\/\/www.buergerkarte.at" |