Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CI-with-Jenkins-in-AWS-Demo-master/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# CI-with-Jenkins-in-GCP-Demo
52 changes: 52 additions & 0 deletions CI-with-Jenkins-in-AWS-Demo-master/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ci.jenkins.aws</groupId>
<artifactId>proj3</artifactId>
<version>1.0-RAMA</version>
</parent>

<artifactId>project</artifactId>
<packaging>war</packaging>
<name>Project</name>
<dependencies>
<!-- runtime dependency -->
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.10</version>
<scope>runtime</scope>
</dependency>

<!-- provided dependency -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
</dependencies>

<profiles>
<profile>
<id>assembly</id>
<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
51 changes: 51 additions & 0 deletions CI-with-Jenkins-in-AWS-Demo-master/project/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ci.jenkins.aws</groupId>
<artifactId>proj3</artifactId>
<version>1.0-RAMA</version>
</parent>

<artifactId>project</artifactId>
<packaging>war</packaging>
<name>Project</name>
<dependencies>
<!-- runtime dependency -->
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.10</version>
<scope>runtime</scope>
</dependency>

<!-- provided dependency -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
</dependencies>

<profiles>
<profile>
<id>assembly</id>
<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>test-webapp</display-name>

</web-app>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<html>
<head>
<title>Welcome to Worldclass DevOps Workshop </title>

</head>
<body bgcolor=white>

<table border="0" cellpadding="10">
<tr>
<td>
<img src="images/test.jpg">
</td>
<td>
<h1>Hello DevOps Engineers and Architects!</h1>
</td>
</tr>
</table>

<p>This session is to demonstrate how to setup git-github </p>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package artifactory.test;

/**
* Hello world!
*/
public class Project {
public static void main(String[] args) {
new Project();
System.out.println("Hello World!");
}
}
Empty file added readme.txt
Empty file.
Empty file added readmefeaturetwo.txt
Empty file.