Skip to content

Commit 4654297

Browse files
committed
Started making the database startup application.
1 parent 4722cbb commit 4654297

32 files changed

+848
-74
lines changed

.idea/artifacts/ear_ear.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/ear_ear_exploded.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/web_war.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/artifacts/web_war_exploded.xml

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__commons_logging_commons_logging_1_1_1.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__org_apache_commons_commons_vfs2_2_0.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__org_apache_maven_scm_maven_scm_api_1_4.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__org_apache_maven_scm_maven_scm_provider_svn_commons_1_4.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__org_apache_maven_scm_maven_scm_provider_svnexe_1_4.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__org_codehaus_plexus_plexus_utils_1_5_6.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__regexp_regexp_1_3.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ear/application.xml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<application xmlns="http://java.sun.com/xml/ns/javaee"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_6.xsd"
5+
version="6">
6+
7+
<module>
8+
<web>
9+
<web-uri>web-1.0.0.Pre-Alpha.war</web-uri>
10+
<context-root>/</context-root>
11+
</web>
12+
</module>
13+
</application>

ear/pom.xml

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
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+
<parent>
6+
<artifactId>thenaglecode</artifactId>
7+
<groupId>com.thenaglecode</groupId>
8+
<version>1.0.0.Pre-Alpha</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>ear</artifactId>
13+
<packaging>ear</packaging>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.thenaglecode</groupId>
18+
<artifactId>web</artifactId>
19+
<version>${application.web.version}</version>
20+
<type>war</type>
21+
</dependency>
22+
</dependencies>
23+
24+
<build>
25+
<plugins>
26+
<plugin>
27+
<artifactId>maven-ear-plugin</artifactId>
28+
<version>2.3.2</version>
29+
<configuration>
30+
<generatedDescriptorLocation>${basedir}/src/main/resources/META-INF</generatedDescriptorLocation>
31+
<modules>
32+
<webModule>
33+
<groupId>com.thenaglecode</groupId>
34+
<artifactId>web</artifactId>
35+
<uri>web-1.0.0.Pre-Alpha.war</uri>
36+
<bundleFileName>web-1.0.0.Pre-Alpha.war</bundleFileName>
37+
<contextRoot>/</contextRoot>
38+
</webModule>
39+
</modules>
40+
</configuration>
41+
</plugin>
42+
<plugin>
43+
<groupId>org.jboss.as.plugins</groupId>
44+
<artifactId>jboss-as-maven-plugin</artifactId>
45+
<configuration>
46+
<javaHome>${thenaglecode.java.home}</javaHome>
47+
<execute-commands/>
48+
<executeCommands/>
49+
<properties>
50+
<enable-welcome-root>false</enable-welcome-root>
51+
</properties>
52+
</configuration>
53+
<executions>
54+
<!-- Undeploy the application on clean -->
55+
<execution>
56+
<id>undeploy</id>
57+
<phase>clean</phase>
58+
<goals>
59+
<goal>undeploy</goal>
60+
</goals>
61+
<configuration>
62+
<ignoreMissingDeployment>true</ignoreMissingDeployment>
63+
</configuration>
64+
</execution>
65+
<!--<execution>
66+
<id>deploy-driver</id>
67+
<phase>install</phase>
68+
<goals>
69+
<goal>deploy-artifact</goal>
70+
</goals>
71+
<configuration>
72+
<groupId>mysql</groupId>
73+
<artifactId>mysql-connector-java</artifactId>
74+
<name>mysql.jar</name>
75+
</configuration>
76+
</execution>
77+
<execution>
78+
<id>deploy</id>
79+
<phase>install</phase>
80+
<goals>
81+
<goal>deploy</goal>
82+
</goals>
83+
</execution> -->
84+
</executions>
85+
86+
<!-- temporary fix for maven 3.1.x errors. keep updating and removing these and checking if they
87+
work then adding them back if they don't work still. get me pal? -->
88+
<dependencies>
89+
<dependency>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-dependency-plugin</artifactId>
92+
<version>2.8</version>
93+
<!--override 2.6-->
94+
</dependency>
95+
<dependency>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-enforcer-plugin</artifactId>
98+
<version>1.3.1</version>
99+
<!--override 1.2-->
100+
</dependency>
101+
</dependencies>
102+
</plugin>
103+
</plugins>
104+
</build>
105+
106+
107+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE application PUBLIC
3+
"-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN"
4+
"http://java.sun.com/dtd/application_1_3.dtd">
5+
<application>
6+
<display-name>ear</display-name>
7+
<module>
8+
<web>
9+
<web-uri>web-1.0.0.Pre-Alpha.war</web-uri>
10+
<context-root>/</context-root>
11+
</web>
12+
</module>
13+
</application>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE application PUBLIC
3+
"-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN"
4+
"http://java.sun.com/dtd/application_1_3.dtd">
5+
<application>
6+
<display-name>ear</display-name>
7+
<module>
8+
<web>
9+
<web-uri>web-1.0.0.Pre-Alpha.war</web-uri>
10+
<context-root>/</context-root>
11+
</web>
12+
</module>
13+
</application>
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<application xmlns="http://java.sun.com/xml/ns/javaee"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_6.xsd"
5+
version="6">
6+
7+
<module>
8+
<web>
9+
<web-uri>web-1.0.0.Pre-Alpha.war</web-uri>
10+
<context-root>/</context-root>
11+
</web>
12+
</module>
13+
</application>

pom.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<module>web</module>
1515
<module>testing</module>
1616
<module>system-setup</module>
17+
<module>ear</module>
1718
</modules>
1819
<properties>
1920
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -55,8 +56,6 @@
5556
</properties>
5657

5758
<dependencyManagement>
58-
59-
6059
<dependencies>
6160
<!-- thenaglecode projects -->
6261
<dependency>

0 commit comments

Comments
 (0)