diff options
author | Martin Spielmann <mail@martinspielmann.de> | 2017-11-03 22:43:34 +0100 |
---|---|---|
committer | Martin Spielmann <mail@martinspielmann.de> | 2017-11-03 22:49:13 +0100 |
commit | 76bbc2df97ed987d1d6bf8ce2c160ad1db7f7033 (patch) | |
tree | 57a312c9bbf71afbe330c5b0926c7209f8931deb | |
parent | 279a5b606dc18ce9bb21a93e2e108090028369ca (diff) | |
download | gitblit-76bbc2df97ed987d1d6bf8ce2c160ad1db7f7033.tar.gz gitblit-76bbc2df97ed987d1d6bf8ce2c160ad1db7f7033.zip |
Added javax.activation dependency "
thanks to this dependency, one can start gitblit with java 9 without using deprecated internal module --add-modules java.activation
-rw-r--r-- | .classpath | 1 | ||||
-rw-r--r-- | build.moxie | 1 | ||||
-rw-r--r-- | gitblit.iml | 11 |
3 files changed, 13 insertions, 0 deletions
@@ -80,6 +80,7 @@ <classpathentry kind="lib" path="ext/pf4j-0.9.0.jar" sourcepath="ext/src/pf4j-0.9.0.jar" /> <classpathentry kind="lib" path="ext/tika-core-1.5.jar" sourcepath="ext/src/tika-core-1.5.jar" /> <classpathentry kind="lib" path="ext/jsoup-1.7.3.jar" sourcepath="ext/src/jsoup-1.7.3.jar" /> + <classpathentry kind="lib" path="ext/javax.activation-api-1.2.0.jar" sourcepath="ext/src/javax.activation-api-1.2.0.jar" /> <classpathentry kind="lib" path="ext/junit-4.12.jar" sourcepath="ext/src/junit-4.12.jar" /> <classpathentry kind="lib" path="ext/hamcrest-core-1.3.jar" sourcepath="ext/src/hamcrest-core-1.3.jar" /> <classpathentry kind="lib" path="ext/selenium-java-2.28.0.jar" sourcepath="ext/src/selenium-java-2.28.0.jar" /> diff --git a/build.moxie b/build.moxie index f21241d1..fd6471eb 100644 --- a/build.moxie +++ b/build.moxie @@ -181,6 +181,7 @@ dependencies: - compile 'ro.fortsoft.pf4j:pf4j:0.9.0' :war - compile 'org.apache.tika:tika-core:1.5' :war - compile 'org.jsoup:jsoup:1.7.3' :war +- compile 'javax.activation:javax.activation-api:1.2.0' - test 'junit:junit:4.12' # Dependencies for Selenium web page testing - test 'org.seleniumhq.selenium:selenium-java:${selenium.version}' @jar diff --git a/gitblit.iml b/gitblit.iml index 1f4aa248..0c059a5e 100644 --- a/gitblit.iml +++ b/gitblit.iml @@ -824,6 +824,17 @@ </SOURCES> </library> </orderEntry> + <orderEntry type="module-library"> + <library name="javax.activation-api-1.2.0.jar"> + <CLASSES> + <root url="jar://$MODULE_DIR$/ext/javax.activation-api-1.2.0.jar!/" /> + </CLASSES> + <JAVADOC /> + <SOURCES> + <root url="jar://$MODULE_DIR$/ext/src/javax.activation-api-1.2.0.jar!/" /> + </SOURCES> + </library> + </orderEntry> <orderEntry type="module-library" scope="TEST"> <library name="junit-4.12.jar"> <CLASSES> |