Skip to content

Commit c732349

Browse files
committed
first changes
1 parent 1a4595c commit c732349

File tree

18 files changed

+192
-61
lines changed

18 files changed

+192
-61
lines changed

.project

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,15 @@
3939
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
4040
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
4141
</natures>
42+
<filteredResources>
43+
<filter>
44+
<id>1756823436255</id>
45+
<name></name>
46+
<type>30</type>
47+
<matcher>
48+
<id>org.eclipse.core.resources.regexFilterMatcher</id>
49+
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
50+
</matcher>
51+
</filter>
52+
</filteredResources>
4253
</projectDescription>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src/main/java"/>
4+
<classpathentry kind="con" path="com.ibm.cics.explorer.sdk.web.LIBERTY_LIBRARIES/L./V.55/JE.7"/>
5+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
6+
<classpathentry kind="src" path=".apt_generated">
7+
<attributes>
8+
<attribute name="optional" value="true"/>
9+
</attributes>
10+
</classpathentry>
11+
<classpathentry kind="output" path="bin/"/>
12+
</classpath>
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>cics-java-liberty-restapp-app</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.wst.validation.validationbuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
<buildCommand>
29+
<name>org.eclipse.m2e.core.maven2Builder</name>
30+
<arguments>
31+
</arguments>
32+
</buildCommand>
33+
</buildSpec>
34+
<natures>
35+
<nature>org.eclipse.jdt.core.javanature</nature>
36+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
37+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
38+
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
39+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
40+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
41+
</natures>
42+
</projectDescription>
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>com.ibm.cicsdev</groupId>
9+
<artifactId>cics-java-liberty-restapp</artifactId>
10+
<version>1.0.0</version>
11+
</parent>
12+
13+
<artifactId>cics-java-liberty-restapp-app</artifactId>
14+
<packaging>war</packaging>
15+
16+
<name>CICS Enterprise Java Program - Application</name>
17+
18+
<dependencies>
19+
<!-- Compile against, but don't include JCICS in the final build (version
20+
and scope are from BOM) -->
21+
<dependency>
22+
<groupId>com.ibm.cics</groupId>
23+
<artifactId>com.ibm.cics.server</artifactId>
24+
</dependency>
25+
26+
<!-- Compile against, but don't include JAXRS in the final build -->
27+
<dependency>
28+
<groupId>javax.ws.rs</groupId>
29+
<artifactId>javax.ws.rs-api</artifactId>
30+
<version>2.0</version>
31+
<scope>provided</scope>
32+
</dependency>
33+
34+
<!--JAXB required if compiling with Java 11 or later -->
35+
<dependency>
36+
<groupId>javax.xml.bind</groupId>
37+
<artifactId>jaxb-api</artifactId>
38+
<version>2.3.1</version>
39+
<scope>provided</scope>
40+
</dependency>
41+
42+
43+
</dependencies>
44+
45+
<build>
46+
<plugins>
47+
<!-- WAR plugin build-->
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-war-plugin</artifactId>
51+
<version>3.4.0</version>
52+
<configuration>
53+
<failOnMissingWebXml>false</failOnMissingWebXml>
54+
<archive>
55+
<addMavenDescriptor>false</addMavenDescriptor>
56+
</archive>
57+
</configuration>
58+
</plugin>
59+
60+
<plugin>
61+
<!-- CICS bundle build, specify <jvmserver> value to match CICS JVMSERVER name -->
62+
<groupId>com.ibm.cics</groupId>
63+
<artifactId>cics-bundle-maven-plugin</artifactId>
64+
<version>1.0.6</version>
65+
<executions>
66+
<execution>
67+
<goals>
68+
<goal>bundle-war</goal>
69+
</goals>
70+
<configuration>
71+
<jvmserver>${cics.jvmserver}</jvmserver>
72+
</configuration>
73+
</execution>
74+
</executions>
75+
</plugin>
76+
77+
</plugins>
78+
</build>
79+
</project>

src/cobol/EDUCHAN.cbl renamed to cics-java-liberty-restapp-app/src/cobol/EDUCHAN.cbl

File renamed without changes.

src/main/java/com/ibm/cicsdev/restapp/CICSApplication.java renamed to cics-java-liberty-restapp-app/src/main/java/com/ibm/cicsdev/restapp/CICSApplication.java

File renamed without changes.

src/main/java/com/ibm/cicsdev/restapp/InfoResource.java renamed to cics-java-liberty-restapp-app/src/main/java/com/ibm/cicsdev/restapp/InfoResource.java

File renamed without changes.

src/main/java/com/ibm/cicsdev/restapp/ReverseResource.java renamed to cics-java-liberty-restapp-app/src/main/java/com/ibm/cicsdev/restapp/ReverseResource.java

File renamed without changes.

src/main/java/com/ibm/cicsdev/restapp/bean/CICSEnvironment.java renamed to cics-java-liberty-restapp-app/src/main/java/com/ibm/cicsdev/restapp/bean/CICSEnvironment.java

File renamed without changes.

src/main/java/com/ibm/cicsdev/restapp/bean/CICSInformation.java renamed to cics-java-liberty-restapp-app/src/main/java/com/ibm/cicsdev/restapp/bean/CICSInformation.java

File renamed without changes.

0 commit comments

Comments
 (0)