Skip to content

Commit bb55d9a

Browse files
java poc project structure
Former-commit-id: dbc05b229732ed1576d84609e1191aa8c989f744
1 parent 5f48fff commit bb55d9a

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

src/main/resources/.metadata

Whitespace-only changes.

src/main/resources/builder.properties

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
common.cache.dir=~/cache
2+
common.cookie.file=~/cookies.txt
3+
4+
wls_12.2.1.3.0_url=http://download.oracle.com/otn/nt/middleware/12c/12213/fmw_12.2.1.3.0_wls_Disk1_1of1.zip
5+
wls_12.2.1.2.0_url=http://download.oracle.com/otn/nt/middleware/12c/12212/fmw_12.2.1.2.0_wls_Disk1_1of1.zip
6+
7+
jdk_8u191_url=https://download.oracle.com/otn-pub/java/jdk/8u191-b12/2787e4a523244c269598db4e85c51e0c/jdk-8u191-linux-x64.tar.gz
8+
jdk_7u80_url=https://download.oracle.com/otn/java/jdk/7u80-b15/jdk-7u80-linux-x64.tar.gz

src/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
6+
<modelVersion>4.0.0</modelVersion>
7+
<groupId>oracle.weblogicx.imagebuilder</groupId>
8+
<artifactId>builder</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>1.8</maven.compiler.source>
13+
<maven.compiler.target>1.8</maven.compiler.target>
14+
</properties>
15+
</project>

0 commit comments

Comments
 (0)