Skip to content

Commit e19dd07

Browse files
Merge pull request #20 from cicsdev/idh
Replace deprecated archivesBaseName
2 parents 88ab0aa + 30ff85d commit e19dd07

4 files changed

Lines changed: 30 additions & 10 deletions

File tree

.classpath

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@
66
<attribute name="gradle_used_by_scope" value="main,test"/>
77
</attributes>
88
</classpathentry>
9-
10-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
9+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
10+
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
11+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer">
12+
<attributes>
13+
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
14+
</attributes>
15+
</classpathentry>
1116
<classpathentry kind="output" path="bin/default"/>
12-
</classpath>
17+
</classpath>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1+
arguments=
2+
auto.sync=false
3+
build.scans.enabled=false
4+
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
15
connection.project.dir=
26
eclipse.preferences.version=1
7+
gradle.user.home=
8+
java.home=
9+
jvm.arguments=
10+
offline.mode=false
11+
override.workspace.settings=false
12+
show.console.view=false
13+
show.executions.view=false

.settings/org.eclipse.wst.common.project.facet.core.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<fixed facet="jst.java"/>
44
<fixed facet="jst.web"/>
55
<installed facet="jst.web" version="2.4"/>
6-
<installed facet="jst.java" version="1.8"/>
6+
<installed facet="jst.java" version="17"/>
77
</faceted-project>

build.gradle

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,22 @@ plugins
88
id 'war'
99
id 'maven-publish'
1010
}
11+
1112
group = 'com.ibm.cicsdev.springboot'
1213
version = '0.1.0'
1314

15+
base
16+
{
17+
archivesName = "cics-java-liberty-springboot-jcics"
18+
}
19+
1420

1521
java
1622
{
1723
sourceCompatibility = JavaVersion.VERSION_17
1824
targetCompatibility = JavaVersion.VERSION_17
1925
}
2026

21-
base {
22-
archivesName='cics-java-liberty-springboot-jcics'
23-
}
2427

2528
// If in Eclipse, add Javadoc to the local project classpath
2629
eclipse
@@ -30,11 +33,13 @@ eclipse
3033
downloadJavadoc = true
3134
}
3235
}
36+
3337
repositories
3438
{
3539
mavenCentral()
3640

3741
}
42+
3843
dependencies
3944
{
4045
// Spring Boot web starter for building REST/HTTP endpoints
@@ -56,9 +61,7 @@ bootWar { enabled = false }
5661

5762

5863
publishing
59-
{
60-
61-
}
64+
{
6265
// Configure the Maven repository to publish to somewhere which is configurable
6366
// with environment variables from outside gradle.
6467
//
@@ -67,3 +70,4 @@ publishing
6770
// -Ppublish_repo_releases_url="file://my-folder" \
6871
// -Ppublish_repo_releases_name="my-maven-repo"
6972
//
73+
}

0 commit comments

Comments
 (0)