Skip to content

Commit 1845f70

Browse files
committed
Initial commit
0 parents  commit 1845f70

File tree

9 files changed

+1439
-0
lines changed

9 files changed

+1439
-0
lines changed

.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
##########################
2+
# those should be ignored
3+
##########################
4+
*~
5+
*.class
6+
*.jar
7+
target/
8+
9+
#################
10+
## Eclipse
11+
#################
12+
.classpath
13+
.project
14+
.metadata
15+
tmp/
16+
*.tmp
17+
*.bak
18+
*.swp
19+
*~.nib
20+
local.properties
21+
.settings/
22+
.loadpath
23+
24+
# Intellij idea
25+
*.iml
26+
27+
# External tool builders
28+
.externalToolBuilders/
29+
30+
# Locally stored "Eclipse launch configurations"
31+
*.launch
32+
33+
# CDT-specific
34+
.cproject
35+
36+
# PDT-specific
37+
.buildpath
38+
39+
############
40+
## Windows
41+
############
42+
43+
# Windows image file caches
44+
Thumbs.db
45+
46+
# Folder config file
47+
Desktop.ini
48+
49+
*.versionsBackup

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
JVM bytecode assembler as REST api

jvm-assembler-server/pom.xml

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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>jvm-assembler</artifactId>
7+
<groupId>com.mmhelloworld</groupId>
8+
<version>1.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>jvm-assembler-server</artifactId>
13+
<packaging>war</packaging>
14+
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.eclipse.jetty</groupId>
19+
<artifactId>jetty-maven-plugin</artifactId>
20+
</plugin>
21+
22+
<plugin>
23+
<artifactId>maven-war-plugin</artifactId>
24+
<configuration>
25+
<warName>jvm-assembler-core</warName>
26+
<failOnMissingWebXml>false</failOnMissingWebXml>
27+
</configuration>
28+
</plugin>
29+
</plugins>
30+
</build>
31+
32+
<dependencies>
33+
34+
<dependency>
35+
<groupId>org.glassfish.jersey.containers</groupId>
36+
<artifactId>jersey-container-servlet-core</artifactId>
37+
</dependency>
38+
39+
<dependency>
40+
<groupId>org.glassfish.jersey.media</groupId>
41+
<artifactId>jersey-media-json-jackson</artifactId>
42+
</dependency>
43+
44+
<dependency>
45+
<groupId>org.eclipse.jetty</groupId>
46+
<artifactId>jetty-server</artifactId>
47+
</dependency>
48+
49+
<dependency>
50+
<groupId>com.fasterxml.jackson.core</groupId>
51+
<artifactId>jackson-core</artifactId>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>com.fasterxml.jackson.core</groupId>
56+
<artifactId>jackson-annotations</artifactId>
57+
</dependency>
58+
59+
<dependency>
60+
<groupId>com.fasterxml.jackson.core</groupId>
61+
<artifactId>jackson-databind</artifactId>
62+
</dependency>
63+
64+
<dependency>
65+
<groupId>org.eclipse.jetty</groupId>
66+
<artifactId>jetty-servlet</artifactId>
67+
</dependency>
68+
69+
<dependency>
70+
<groupId>org.ow2.asm</groupId>
71+
<artifactId>asm-all</artifactId>
72+
</dependency>
73+
</dependencies>
74+
75+
76+
</project>

0 commit comments

Comments
 (0)