Skip to content

Commit cf8ceef

Browse files
author
Saravana Kumar M
committed
Exchange Monitor Application.
First Check-in after repository creation. Planned to implement the project with Apache Cayenne but could not bcoz of some reason. But added cayenne libraries.
1 parent a4df053 commit cf8ceef

File tree

5,630 files changed

+754748
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,630 files changed

+754748
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,27 @@
1010

1111
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
1212
hs_err_pid*
13+
14+
# Ignore Gradle GUI config
15+
gradle-app.setting
16+
17+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
18+
!gradle-wrapper.jar
19+
20+
# Cache of project
21+
.gradletasknamecache
22+
23+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
24+
# gradle/wrapper/gradle-wrapper.properties
25+
26+
#ignore Maven's target folder and anything under that
27+
**/target/*
28+
29+
#ignore .settings folder created by eclipse
30+
**/.settings/*
31+
32+
#ignore Gradle's bin folder and anything under that and also .gradle folder
33+
.gradle
34+
build/
35+
**/.gradle/*
36+
**/bin/*

ExchangeMonitor/.classpath

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src/main/java">
4+
<attributes>
5+
<attribute name="FROM_GRADLE_MODEL" value="true"/>
6+
</attributes>
7+
</classpathentry>
8+
<classpathentry kind="src" path="src/main/resources">
9+
<attributes>
10+
<attribute name="FROM_GRADLE_MODEL" value="true"/>
11+
</attributes>
12+
</classpathentry>
13+
<classpathentry kind="src" path="src/test/java">
14+
<attributes>
15+
<attribute name="FROM_GRADLE_MODEL" value="true"/>
16+
</attributes>
17+
</classpathentry>
18+
<classpathentry kind="src" path="src/main/config"/>
19+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
20+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
21+
<classpathentry kind="output" path="bin"/>
22+
</classpath>

ExchangeMonitor/.project

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>ExchangeMonitor</name>
4+
<comment>Project ExchangeMonitor created by Buildship.</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.buildship.core.gradleprojectbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
21+
<nature>org.eclipse.jdt.core.javanature</nature>
22+
</natures>
23+
</projectDescription>

ExchangeMonitor/build.gradle

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
/*
2+
* This build file was auto generated by running the Gradle 'init' task by 'Saravana Kumar M' at '11/18/16 7:56 PM' with Gradle 3.1
3+
* For more details take a look at the Java Quickstart chapter in the Gradle user guide available at https://docs.gradle.org/3.1/userguide/tutorial_java_projects.html
4+
*/
5+
6+
//Apply the java plugin to add support for Java related tasks
7+
apply plugin: 'java'
8+
9+
//Apply the java plugin to add support for JavaFX related tasks
10+
apply from: "http://dl.bintray.com/content/shemnon/javafx-gradle/8.1.1/javafx.plugin"
11+
12+
sourceCompatibility = 1.8
13+
targetCompatibility = 1.8
14+
15+
//In this section you declare where to find the dependencies of your project
16+
repositories
17+
{
18+
//Use 'jcenter' for resolving your dependencies. You can declare any Maven/Ivy/file repository here.
19+
jcenter()
20+
mavenCentral()
21+
maven
22+
{
23+
url "http://maven.objectstyle.org/nexus/content/repositories/cayenne-unofficial/"
24+
}
25+
}
26+
27+
javafx
28+
{
29+
profiles
30+
{
31+
//not every possible platform override, but ones that have a known impact
32+
windows
33+
{
34+
//id = 'c533f663-1efd-489f-b910-4c7ec20c7fd0'
35+
//category = 'JavaFX Demos'
36+
//Points to JDK and its JavaFX libraries, also declares target runtime JDK
37+
javaRuntime = 'C:/Program Files/Java/jdk1.8.0_112'
38+
39+
//Application name and ID presented by target OS
40+
appID 'ExchangeMonitor'
41+
appName 'ExchangeMonitor Application'
42+
43+
//Main class of application
44+
mainClass 'com.tc.app.exchangemonitor.main.ExchangeMonitorApplicationMain'
45+
46+
//JVM arguments, system properties, application command line arguments
47+
jvmArgs = ['-XX:+AggressiveOpts', '-XX:CompileThreshold=1']
48+
systemProperties = ['prism.disableRegionCaching':'true']
49+
arguments = ['-l', '--fast']
50+
51+
/*
52+
//Keystore credentials for signing JAR
53+
//Generate key: keytool -genkey -alias release -keyalg RSA -keystore keystore.jks -keysize 2048
54+
releaseKey
55+
{
56+
alias = 'release'
57+
keyPass = getProjectProperty('keyStorePassword')
58+
keyStore = file("${System.properties['user.home']}/keystore/keystore.jks")
59+
storePass = getProjectProperty('storePassword')
60+
}
61+
62+
signingMode 'release'
63+
*/
64+
65+
//app icons
66+
icons
67+
{
68+
}
69+
}
70+
71+
macosx
72+
{
73+
}
74+
75+
linux
76+
{
77+
}
78+
}
79+
}
80+
81+
//In this section you declare the dependencies for your production and test code
82+
dependencies
83+
{
84+
//Declare the dependency for your favourite test framework you want to use in your tests.
85+
//TestNG is also supported by the Gradle Test task. Just change the
86+
//testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
87+
//'test.useTestNG()' to your build script.
88+
testCompile 'junit:junit:4.4'
89+
compile 'javax.inject:javax.inject:1'
90+
compile 'org.hibernate:hibernate-core:5.1.0.Final'
91+
compile 'org.controlsfx:controlsfx:8.40.12'
92+
93+
//log4j dependency
94+
compile 'org.apache.logging.log4j:log4j-api:2.5'
95+
compile 'org.apache.logging.log4j:log4j-core:2.5'
96+
97+
//jtds dependency
98+
compile 'net.sourceforge.jtds:jtds:1.3.1'
99+
100+
//Google Guava dependency
101+
compile 'com.google.guava:guava:19.0'
102+
103+
//Apache POI dependency
104+
compile group: 'org.apache.poi', name: 'poi', version: '3.15'
105+
106+
//Apache POI OOXML dependency
107+
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '3.15'
108+
109+
//Apache Cayenne
110+
compile 'org.apache.cayenne:cayenne-server:4.0.M4.ce40fc0'
111+
}
112+
113+
//compileJava.options.fork=true
114+
//compileJava.options.forkOptions.executable="C:\\Program Files\\Java\\jdk1.8.0_112"
115+
//sourceCompatibility = 1.8
116+
//targetCompatibility = 1.8
117+
118+
String getProjectProperty(String propertyName)
119+
{
120+
project.hasProperty(propertyName) ? project.property(propertyName) : null
121+
}
51.7 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Fri Nov 18 19:56:05 IST 2016
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip

ExchangeMonitor/gradlew

Lines changed: 169 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)