summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Heher <jakob.heher@iaik.tugraz.at>2022-01-19 12:49:44 +0100
committerJakob Heher <jakob.heher@iaik.tugraz.at>2022-01-19 12:49:44 +0100
commit09d3c647020d7a2b30ee3ebe8efff0dcfff4d1b5 (patch)
treee14cbd2dc368fe6fa5cc12ac0571371144d5f857
parent639074df10b404276001504021d5f1b6755d4c5f (diff)
downloadpdf-over-09d3c647020d7a2b30ee3ebe8efff0dcfff4d1b5.tar.gz
pdf-over-09d3c647020d7a2b30ee3ebe8efff0dcfff4d1b5.tar.bz2
pdf-over-09d3c647020d7a2b30ee3ebe8efff0dcfff4d1b5.zip
change logging directory, and rearrange profiles to match my build environment (cf. #62)
-rw-r--r--pdf-over-gui/pom.xml29
-rwxr-xr-xpublish.sh2
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>
diff --git a/publish.sh b/publish.sh
index df8f3184..cae85541 100755
--- a/publish.sh
+++ b/publish.sh
@@ -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"