Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
JastAdd
RagConnect
Commits
2e9473d2
Commit
2e9473d2
authored
Jan 15, 2021
by
René Schöne
Browse files
Update Gradle to 6.7.1
parent
f08e9809
Changes
8
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
2e9473d2
...
...
@@ -6,4 +6,3 @@
.idea/
.gradle/
build/
/gradle.properties
.gitlab-ci.yml
View file @
2e9473d2
...
...
@@ -4,7 +4,6 @@ variables:
stages
:
-
build
-
publish
-
deploy
before_script
:
-
export GRADLE_USER_HOME=`pwd`/.gradle
...
...
@@ -33,7 +32,7 @@ publish:
pages
:
image
:
python:3.7-alpine
stage
:
deploy
stage
:
publish
script
:
-
pip install -U sphinx sphinx-rtd-theme recommonmark sphinxemoji sphinx-markdown-tables
-
sphinx-build -b html pages/ public
...
...
gradle.properties
0 → 100644
View file @
2e9473d2
log4j_version
=
2.14.0
mustache_java_version
=
0.9.7
gradle/wrapper/gradle-wrapper.jar
View file @
2e9473d2
No preview for this file type
gradle/wrapper/gradle-wrapper.properties
View file @
2e9473d2
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
5.6.4
-bin.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
6.7.1
-bin.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
gradlew
View file @
2e9473d2
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
##
## Gradle start up script for UN*X
...
...
@@ -28,7 +44,7 @@ APP_NAME="Gradle"
APP_BASE_NAME
=
`
basename
"
$0
"
`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS
=
""
DEFAULT_JVM_OPTS
=
'"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD
=
"maximum"
...
...
@@ -109,8 +125,8 @@ if $darwin; then
GRADLE_OPTS
=
"
$GRADLE_OPTS
\"
-Xdock:name=
$APP_NAME
\"
\"
-Xdock:icon=
$APP_HOME
/media/gradle.icns
\"
"
fi
# For Cygwin, switch paths to Windows format before running java
if
$cygwin
;
then
# For Cygwin
or MSYS
, switch paths to Windows format before running java
if
[
"
$cygwin
"
=
"true"
-o
"
$msys
"
=
"true"
]
;
then
APP_HOME
=
`
cygpath
--path
--mixed
"
$APP_HOME
"
`
CLASSPATH
=
`
cygpath
--path
--mixed
"
$CLASSPATH
"
`
JAVACMD
=
`
cygpath
--unix
"
$JAVACMD
"
`
...
...
gradlew.bat
View file @
2e9473d2
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if
"
%DEBUG%
"
==
""
@echo
off
@rem ##########################################################################
@rem
...
...
@@ -14,7 +30,7 @@ set APP_BASE_NAME=%~n0
set
APP_HOME
=
%DIRNAME%
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set
DEFAULT_JVM_OPTS
=
set
DEFAULT_JVM_OPTS
=
"-Xmx64m"
"-Xms64m"
@rem Find java.exe
if
defined
JAVA_HOME
goto
findJavaFromJavaHome
...
...
ragconnect.base/build.gradle
View file @
2e9473d2
apply
plugin:
'java-library'
apply
plugin:
'idea'
buildscript
{
repositories
.
mavenCentral
()
dependencies
{
classpath
'org.jastadd:jastaddgradle:1.13.3'
}
}
plugins
{
id
'java'
id
'java-library'
id
'idea'
id
'com.github.ben-manes.versions'
version
'0.36.0'
id
'maven-publish'
id
'application'
}
apply
plugin:
'jastadd'
apply
plugin:
'application'
apply
plugin:
'maven-publish'
group
=
'de.tudresden.inf.st'
sourceCompatibility
=
1.8
targetCompatibility
=
1.8
mainClassName
=
'org.jastadd.ragconnect.compiler.Compiler'
repositories
{
...
...
@@ -16,20 +25,13 @@ repositories {
jcenter
()
}
buildscript
{
repositories
.
jcenter
()
dependencies
{
classpath
'org.jastadd:jastaddgradle:1.13.3'
}
}
dependencies
{
implementation
project
(
':relast-preprocessor'
)
implementation
group:
'org.apache.logging.log4j'
,
name:
'log4j-api'
,
version:
'2.11.2'
implementation
group:
'org.apache.logging.log4j'
,
name:
'log4j-core'
,
version:
'2.11.2'
implementation
group:
'org.apache.logging.log4j'
,
name:
'log4j-jul'
,
version:
'2.11.2'
implementation
group:
'com.github.spullara.mustache.java'
,
name:
'compiler'
,
version:
'0.9.6'
runtime
group:
'org.jastadd'
,
name:
'jastadd'
,
version:
'2.3.4'
implementation
group:
'org.apache.logging.log4j'
,
name:
'log4j-api'
,
version:
"${log4j_version}"
implementation
group:
'org.apache.logging.log4j'
,
name:
'log4j-core'
,
version:
"${log4j_version}"
implementation
group:
'org.apache.logging.log4j'
,
name:
'log4j-jul'
,
version:
"${log4j_version}"
implementation
group:
'com.github.spullara.mustache.java'
,
name:
'compiler'
,
version:
"${mustache_java_version}"
runtime
Only
group:
'org.jastadd'
,
name:
'jastadd'
,
version:
'2.3.4'
api
group:
'net.sf.beaver'
,
name:
'beaver-rt'
,
version:
'0.9.11'
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment