Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firefighter template
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
LABOUREL Arnaud
Firefighter template
Commits
b4f3f557
Commit
b4f3f557
authored
1 year ago
by
LABOUREL Arnaud
Browse files
Options
Downloads
Patches
Plain Diff
updated gradle config
parent
1dee4268
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+2
-44
2 additions, 44 deletions
.gitignore
build.gradle
+13
-7
13 additions, 7 deletions
build.gradle
gradle/wrapper/gradle-wrapper.properties
+1
-1
1 addition, 1 deletion
gradle/wrapper/gradle-wrapper.properties
settings.gradle
+1
-1
1 addition, 1 deletion
settings.gradle
with
17 additions
and
53 deletions
.gitignore
+
2
−
44
View file @
b4f3f557
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# AWS User-specific
.idea/**/aws.xml
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
cmake-build-*/
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
# Idea
.idea/
# File-based project format
*.iws
...
...
This diff is collapsed.
Click to expand it.
build.gradle
+
13
−
7
View file @
b4f3f557
plugins
{
id
'application'
id
"org.openjfx.javafxplugin"
version
"0.0.1
0
"
id
"org.openjfx.javafxplugin"
version
"0.0.1
4
"
}
javafx
{
version
=
"
17
"
version
=
"
20
"
modules
=
[
'javafx.controls'
,
'javafx.fxml'
]
}
...
...
@@ -13,14 +13,20 @@ javafx {
repositories
{
mavenCentral
()
}
dependencies
{
testImplementation
group:
'junit'
,
name:
'junit'
,
version:
'4.12'
testImplementation
'org.hamcrest:hamcrest-library:1.3'
testRuntimeOnly
(
"org.junit.platform:junit-platform-launcher"
)
{
because
(
"Only needed to run tests in a version of IntelliJ IDEA that bundles older versions"
)
}
testRuntimeOnly
(
"org.junit.jupiter:junit-jupiter-engine"
)
testImplementation
(
"org.assertj:assertj-core:3.24.2"
)
testImplementation
(
"org.junit.jupiter:junit-jupiter:5.10.0"
)
}
mainClassName
=
"App"
test
{
useJUnitPlatform
()
}
application
{
mainClass
.
set
(
"App"
)
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
gradle/wrapper/gradle-wrapper.properties
+
1
−
1
View file @
b4f3f557
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
7
.4-bin.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
8
.4-bin.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
This diff is collapsed.
Click to expand it.
settings.gradle
+
1
−
1
View file @
b4f3f557
rootProject
.
name
=
'f
f
'
rootProject
.
name
=
'f
irefighter
'
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