Skip to content
This repository was archived by the owner on Jul 6, 2018. It is now read-only.

Commit 203b66a

Browse files
committed
Initial commit
1 parent 783db80 commit 203b66a

File tree

6 files changed

+889
-0
lines changed

6 files changed

+889
-0
lines changed

.gitattributes

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.classpath
16+
.settings/
17+
.loadpath
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# CDT-specific
26+
.cproject
27+
28+
# PDT-specific
29+
.buildpath
30+
31+
32+
#################
33+
## Visual Studio
34+
#################
35+
36+
## Ignore Visual Studio temporary files, build results, and
37+
## files generated by popular Visual Studio add-ons.
38+
39+
# User-specific files
40+
*.suo
41+
*.user
42+
*.sln.docstates
43+
44+
# Build results
45+
[Dd]ebug/
46+
[Rr]elease/
47+
*_i.c
48+
*_p.c
49+
*.ilk
50+
*.meta
51+
*.obj
52+
*.pch
53+
*.pdb
54+
*.pgc
55+
*.pgd
56+
*.rsp
57+
*.sbr
58+
*.tlb
59+
*.tli
60+
*.tlh
61+
*.tmp
62+
*.vspscc
63+
.builds
64+
*.dotCover
65+
66+
## TODO: If you have NuGet Package Restore enabled, uncomment this
67+
#packages/
68+
69+
# Visual C++ cache files
70+
ipch/
71+
*.aps
72+
*.ncb
73+
*.opensdf
74+
*.sdf
75+
76+
# Visual Studio profiler
77+
*.psess
78+
*.vsp
79+
80+
# ReSharper is a .NET coding add-in
81+
_ReSharper*
82+
83+
# Installshield output folder
84+
[Ee]xpress
85+
86+
# DocProject is a documentation generator add-in
87+
DocProject/buildhelp/
88+
DocProject/Help/*.HxT
89+
DocProject/Help/*.HxC
90+
DocProject/Help/*.hhc
91+
DocProject/Help/*.hhk
92+
DocProject/Help/*.hhp
93+
DocProject/Help/Html2
94+
DocProject/Help/html
95+
96+
# Click-Once directory
97+
publish
98+
99+
# Others
100+
[Bb]in
101+
[Oo]bj
102+
sql
103+
TestResults
104+
*.Cache
105+
ClientBin
106+
stylecop.*
107+
~$*
108+
*.dbmdl
109+
Generated_Code #added for RIA/Silverlight projects
110+
111+
# Backup & report files from converting an old project file to a newer
112+
# Visual Studio version. Backup files are not needed, because we have git ;-)
113+
_UpgradeReport_Files/
114+
Backup*/
115+
UpgradeLog*.XML
116+
117+
118+
119+
############
120+
## Windows
121+
############
122+
123+
# Windows image file caches
124+
Thumbs.db
125+
126+
# Folder config file
127+
Desktop.ini
128+
129+
130+
#############
131+
## Python
132+
#############
133+
134+
*.py[co]
135+
136+
# Packages
137+
*.egg
138+
*.egg-info
139+
dist
140+
build
141+
eggs
142+
parts
143+
bin
144+
var
145+
sdist
146+
develop-eggs
147+
.installed.cfg
148+
149+
# Installer logs
150+
pip-log.txt
151+
152+
# Unit test / coverage reports
153+
.coverage
154+
.tox
155+
156+
#Translations
157+
*.mo
158+
159+
#Mr Developer
160+
.mr.developer.cfg
161+
162+
# Mac crap
163+
.DS_Store

pom.xml

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>com.electriccloud</groupId>
7+
<artifactId>javac2-maven-plugin</artifactId>
8+
<version>1.0.1</version>
9+
<packaging>maven-plugin</packaging>
10+
11+
<name>Javac2 Maven Plugin</name>
12+
<description>Instruments class files using IntelliJ's javac2 instrumenter</description>
13+
14+
<properties>
15+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
<maven.version>3.0.4</maven.version>
17+
</properties>
18+
19+
<licenses>
20+
<license>
21+
<name>The MIT License</name>
22+
<url>http://www.opensource.org/licenses/MIT</url>
23+
</license>
24+
</licenses>
25+
26+
<prerequisites>
27+
<maven>3.0.4</maven>
28+
</prerequisites>
29+
30+
<build>
31+
<plugins>
32+
<plugin>
33+
<groupId>org.apache.maven.plugins</groupId>
34+
<artifactId>maven-clean-plugin</artifactId>
35+
<version>2.4.1</version>
36+
</plugin>
37+
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-compiler-plugin</artifactId>
41+
<version>2.5</version>
42+
</plugin>
43+
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-deploy-plugin</artifactId>
47+
<version>2.7</version>
48+
</plugin>
49+
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-install-plugin</artifactId>
53+
<version>2.3.1</version>
54+
</plugin>
55+
56+
<plugin>
57+
<groupId>org.apache.maven.plugins</groupId>
58+
<artifactId>maven-jar-plugin</artifactId>
59+
<version>2.4</version>
60+
</plugin>
61+
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-resources-plugin</artifactId>
65+
<version>2.5</version>
66+
</plugin>
67+
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-site-plugin</artifactId>
71+
<version>3.1</version>
72+
</plugin>
73+
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-surefire-plugin</artifactId>
77+
<version>2.12</version>
78+
</plugin>
79+
80+
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-plugin-plugin</artifactId>
84+
<version>2.9</version>
85+
<executions>
86+
<execution>
87+
<id>generated-helpmojo</id>
88+
<goals>
89+
<goal>helpmojo</goal>
90+
</goals>
91+
</execution>
92+
</executions>
93+
<dependencies>
94+
<dependency>
95+
<groupId>org.jfrog.maven.annomojo</groupId>
96+
<artifactId>maven-plugin-tools-anno</artifactId>
97+
<version>1.4.1</version>
98+
<scope>runtime</scope>
99+
</dependency>
100+
</dependencies>
101+
</plugin>
102+
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-source-plugin</artifactId>
106+
<version>2.1.2</version>
107+
<executions>
108+
<execution>
109+
<phase>package</phase>
110+
<goals>
111+
<goal>jar</goal>
112+
</goals>
113+
</execution>
114+
</executions>
115+
</plugin>
116+
117+
</plugins>
118+
</build>
119+
120+
<dependencies>
121+
<dependency>
122+
<groupId>asm</groupId>
123+
<artifactId>asm</artifactId>
124+
<version>3.3.1</version>
125+
</dependency>
126+
<dependency>
127+
<groupId>asm</groupId>
128+
<artifactId>asm-commons</artifactId>
129+
<version>3.3.1</version>
130+
</dependency>
131+
<dependency>
132+
<groupId>org.apache.maven</groupId>
133+
<artifactId>maven-core</artifactId>
134+
<version>${maven.version}</version>
135+
</dependency>
136+
<dependency>
137+
<groupId>org.apache.maven</groupId>
138+
<artifactId>maven-plugin-api</artifactId>
139+
<version>${maven.version}</version>
140+
</dependency>
141+
<dependency>
142+
<groupId>com.intellij</groupId>
143+
<artifactId>annotations</artifactId>
144+
<version>11.1.2</version>
145+
</dependency>
146+
<dependency>
147+
<groupId>com.intellij</groupId>
148+
<artifactId>javac2</artifactId>
149+
<version>11.1.2</version>
150+
</dependency>
151+
<dependency>
152+
<groupId>org.apache.ant</groupId>
153+
<artifactId>ant</artifactId>
154+
<version>1.8.4</version>
155+
</dependency>
156+
<dependency>
157+
<groupId>org.jfrog.maven.annomojo</groupId>
158+
<artifactId>maven-plugin-anno</artifactId>
159+
<version>1.4.1</version>
160+
</dependency>
161+
</dependencies>
162+
163+
</project>

0 commit comments

Comments
 (0)