Skip to content

Commit

Permalink
Merge branch 'protegeproject:master' into removeLibs
Browse files Browse the repository at this point in the history
  • Loading branch information
mosfet80 authored May 25, 2024
2 parents e7fd6a6 + 23df63b commit 946f55c
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 14 deletions.
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>edu.stanford.protege</groupId>
<artifactId>protege-parent</artifactId>
<version>5.6.3</version>
<version>5.6.4</version>
<packaging>pom</packaging>

<name>protege-parent</name>
Expand Down Expand Up @@ -126,8 +126,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
<slf4j.version>1.7.12</slf4j.version>
<logback.version>1.1.3</logback.version>
<slf4j.version>1.7.32</slf4j.version>
<logback.version>1.2.13</logback.version>
<lib.location>target/lib</lib.location>
<jackson.version>2.9.8</jackson.version>
</properties>
Expand All @@ -138,7 +138,7 @@
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-osgidistribution</artifactId>
<version>4.5.26</version>
<version>4.5.29</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -250,7 +250,7 @@
<dependency>
<groupId>com.googlecode.javaewah</groupId>
<artifactId>JavaEWAH</artifactId>
<version>1.1.6</version>
<version>1.1.13</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -379,7 +379,7 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>4.1.0</version>
<version>5.1.9</version>
<extensions>true</extensions>
<configuration>
<instructions>
Expand Down
2 changes: 1 addition & 1 deletion protege-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-parent</artifactId>
<version>5.6.3</version>
<version>5.6.4</version>
<relativePath>../</relativePath>
</parent>

Expand Down
8 changes: 4 additions & 4 deletions protege-desktop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-parent</artifactId>
<version>5.6.3</version>
<version>5.6.4</version>
<relativePath>../</relativePath>
</parent>

Expand Down Expand Up @@ -68,21 +68,21 @@
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>jre.os-x</artifactId>
<version>11.0.17_8</version>
<version>11.0.23_9</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>jre.win</artifactId>
<version>11.0.17_8</version>
<version>11.0.23_9</version>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>jre.linux</artifactId>
<version>11.0.17_8</version>
<version>11.0.23_9</version>
<scope>runtime</scope>
</dependency>

Expand Down
Binary file modified protege-desktop/src/main/env/linux/protege
Binary file not shown.
1 change: 1 addition & 0 deletions protege-desktop/src/main/env/linux/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ $EFFECTIVE_JAVA_HOME/bin/java \
-Dlogback.configurationFile=conf/logback.xml \
-Dfile.encoding=UTF-8 \
${conf.extra.args} \
--add-opens=java.desktop/sun.swing=ALL-UNNAMED \
-classpath bundles/guava.jar:bundles/logback-classic.jar:bundles/logback-core.jar:bundles/slf4j-api.jar:bundles/glassfish-corba-orb.jar:bundles/org.apache.felix.main.jar:bundles/maven-artifact.jar:bundles/protege-launcher.jar \
$CMD_OPTIONS $EXTRA_JVM_OPTIONS org.protege.osgi.framework.Launcher $1

Expand Down
Binary file modified protege-desktop/src/main/env/os-x/MacOS/protege
Binary file not shown.
1 change: 1 addition & 0 deletions protege-desktop/src/main/env/platform-independent/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ $EFFECTIVE_JAVA_HOME/bin/java \
-Dlogback.configurationFile=conf/logback.xml \
-Dfile.encoding=UTF-8 \
${conf.extra.args} \
--add-opens=java.desktop/sun.swing=ALL-UNNAMED \
-classpath bundles/guava.jar:bundles/logback-classic.jar:bundles/logback-core.jar:bundles/slf4j-api.jar:bundles/glassfish-corba-orb.jar:bundles/org.apache.felix.main.jar:bundles/maven-artifact.jar:bundles/protege-launcher.jar \
$CMD_OPTIONS $EXTRA_JVM_OPTIONS org.protege.osgi.framework.Launcher $1

Expand Down
Binary file modified protege-desktop/src/main/env/win/Protege.exe
Binary file not shown.
4 changes: 3 additions & 1 deletion protege-editor-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-parent</artifactId>
<version>5.6.3</version>
<version>5.6.4</version>
<relativePath>../</relativePath>
</parent>

Expand Down Expand Up @@ -105,6 +105,8 @@
</_exportcontents>
<Import-Package>
!com.sun.*,
!com.apple.*,
!sun.swing,
org.eclipse.core.runtime;registry="split",
*
</Import-Package>
Expand Down
2 changes: 1 addition & 1 deletion protege-editor-owl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-parent</artifactId>
<version>5.6.3</version>
<version>5.6.4</version>
<relativePath>../</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion protege-launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>edu.stanford.protege</groupId>
<artifactId>protege-parent</artifactId>
<version>5.6.3</version>
<version>5.6.4</version>
<relativePath>../</relativePath>
</parent>

Expand Down

0 comments on commit 946f55c

Please sign in to comment.