Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tlc4b
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
tlc4b
Commits
7533d3a5
Commit
7533d3a5
authored
2 years ago
by
dgelessus
Browse files
Options
Downloads
Patches
Plain Diff
Use modern Gradle syntax for Java compatibility versions
parent
13015c3f
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
build.gradle
+3
-3
3 additions, 3 deletions
build.gradle
with
3 additions
and
3 deletions
build.gradle
+
3
−
3
View file @
7533d3a5
...
...
@@ -12,9 +12,6 @@ project.group = 'de.hhu.stups'
final
isSnapshot
=
project
.
version
.
endsWith
(
"-SNAPSHOT"
)
project
.
sourceCompatibility
=
'1.7'
project
.
targetCompatibility
=
'1.7'
repositories
{
mavenCentral
()
if
(
isSnapshot
)
{
...
...
@@ -49,6 +46,9 @@ dependencies {
}
java
{
project
.
sourceCompatibility
=
JavaVersion
.
VERSION_1_7
project
.
targetCompatibility
=
JavaVersion
.
VERSION_1_7
withSourcesJar
()
withJavadocJar
()
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment