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

Commit 600a8aa

Browse files
Source Code New Engine
1 parent eec69f6 commit 600a8aa

19 files changed

+1499
-324
lines changed

engine_src/CSARParserComplex.java

-237
This file was deleted.

engine_src/pom.xml

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>org.tosca4iot</groupId>
6+
<name>tosca4iotengine</name>
7+
<packaging>war</packaging>
8+
<version>1.0</version>
9+
<properties>
10+
<java-version>1.7</java-version>
11+
<org.springframework-version>4.2.3.RELEASE</org.springframework-version>
12+
<org.aspectj-version>1.6.10</org.aspectj-version>
13+
<restlet-version>2.3.1</restlet-version>
14+
</properties>
15+
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>org.json</groupId>
20+
<artifactId>json</artifactId>
21+
<version>20160807</version>
22+
</dependency>
23+
24+
25+
<dependency>
26+
<groupId>org.slf4j</groupId>
27+
<artifactId>slf4j-api</artifactId>
28+
<version>1.7.5</version>
29+
</dependency>
30+
31+
32+
<!-- Spring -->
33+
<dependency>
34+
<groupId>org.springframework</groupId>
35+
<artifactId>spring-context</artifactId>
36+
<version>${org.springframework-version}</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.springframework</groupId>
40+
<artifactId>spring-webmvc</artifactId>
41+
<version>${org.springframework-version}</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.springframework</groupId>
45+
<artifactId>spring-context-support</artifactId>
46+
<version>${org.springframework-version}</version>
47+
</dependency>
48+
49+
<dependency>
50+
<groupId>org.springframework</groupId>
51+
<artifactId>spring-test</artifactId>
52+
<version>${org.springframework-version}</version>
53+
</dependency>
54+
55+
<!-- Logging -->
56+
57+
<dependency>
58+
<groupId>log4j</groupId>
59+
<artifactId>log4j</artifactId>
60+
<version>1.2.17</version>
61+
</dependency>
62+
63+
<!-- @Inject -->
64+
<dependency>
65+
<groupId>javax.inject</groupId>
66+
<artifactId>javax.inject</artifactId>
67+
<version>1</version>
68+
</dependency>
69+
70+
<!-- Servlet -->
71+
<dependency>
72+
<groupId>javax.servlet</groupId>
73+
<artifactId>javax.servlet-api</artifactId>
74+
<version>3.1.0</version>
75+
<scope>provided</scope>
76+
</dependency>
77+
<dependency>
78+
<groupId>javax.servlet.jsp</groupId>
79+
<artifactId>javax.servlet.jsp-api</artifactId>
80+
<version>2.3.1</version>
81+
<scope>provided</scope>
82+
</dependency>
83+
<dependency>
84+
<groupId>javax.servlet</groupId>
85+
<artifactId>jstl</artifactId>
86+
<version>1.2</version>
87+
</dependency>
88+
89+
<dependency>
90+
<groupId>com.jcraft</groupId>
91+
<artifactId>jsch</artifactId>
92+
<version>0.1.54</version>
93+
</dependency>
94+
95+
<!-- Test -->
96+
<dependency>
97+
<groupId>junit</groupId>
98+
<artifactId>junit</artifactId>
99+
<version>4.12</version>
100+
</dependency>
101+
102+
103+
104+
</dependencies>
105+
<build>
106+
<plugins>
107+
108+
<plugin>
109+
<groupId>org.apache.maven.plugins</groupId>
110+
<artifactId>maven-compiler-plugin</artifactId>
111+
<version>3.3</version>
112+
<configuration>
113+
<source>1.7</source>
114+
<target>1.7</target>
115+
<showWarnings>true</showWarnings>
116+
<showDeprecation>true</showDeprecation>
117+
</configuration>
118+
</plugin>
119+
<plugin>
120+
<groupId>org.apache.maven.plugins</groupId>
121+
<artifactId>maven-war-plugin</artifactId>
122+
<version>2.6</version>
123+
</plugin>
124+
</plugins>
125+
</build>
126+
<artifactId>tosca4iotengine</artifactId>
127+
</project>

0 commit comments

Comments
 (0)