Pārlūkot izejas kodu

Remove unneeded dependencies

Greg Turnquist 11 gadi atpakaļ
vecāks
revīzija
1202e728c9
4 mainītis faili ar 2 papildinājumiem un 20 dzēšanām
  1. 0 2
      complete/build.gradle
  2. 1 8
      complete/pom.xml
  3. 0 2
      initial/build.gradle
  4. 1 8
      initial/pom.xml

+ 0 - 2
complete/build.gradle

@@ -24,10 +24,8 @@ repositories {
 }
 }
 
 
 dependencies {
 dependencies {
-    compile("org.springframework.boot:spring-boot-starter-web")
     compile("org.springframework.boot:spring-boot-starter-websocket")
     compile("org.springframework.boot:spring-boot-starter-websocket")
     compile("org.springframework:spring-messaging")
     compile("org.springframework:spring-messaging")
-    compile("com.fasterxml.jackson.core:jackson-databind")
     testCompile("junit:junit")
     testCompile("junit:junit")
 }
 }
 
 

+ 1 - 8
complete/pom.xml

@@ -14,10 +14,6 @@
     </parent>
     </parent>
 
 
     <dependencies>
     <dependencies>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-web</artifactId>
-        </dependency>
         <dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-websocket</artifactId>
             <artifactId>spring-boot-starter-websocket</artifactId>
@@ -26,14 +22,11 @@
             <groupId>org.springframework</groupId>
             <groupId>org.springframework</groupId>
             <artifactId>spring-messaging</artifactId>
             <artifactId>spring-messaging</artifactId>
         </dependency>
         </dependency>
-        <dependency>
-            <groupId>com.fasterxml.jackson.core</groupId>
-            <artifactId>jackson-databind</artifactId>
-        </dependency>
     </dependencies>
     </dependencies>
 
 
     <properties>
     <properties>
         <start-class>hello.Application</start-class>
         <start-class>hello.Application</start-class>
+        <java.version>1.7</java.version>
     </properties>
     </properties>
 
 
     <build>
     <build>

+ 0 - 2
initial/build.gradle

@@ -24,10 +24,8 @@ repositories {
 }
 }
 
 
 dependencies {
 dependencies {
-    compile("org.springframework.boot:spring-boot-starter-web")
     compile("org.springframework.boot:spring-boot-starter-websocket")
     compile("org.springframework.boot:spring-boot-starter-websocket")
     compile("org.springframework:spring-messaging")
     compile("org.springframework:spring-messaging")
-    compile("com.fasterxml.jackson.core:jackson-databind")
     testCompile("junit:junit")
     testCompile("junit:junit")
 }
 }
 
 

+ 1 - 8
initial/pom.xml

@@ -14,10 +14,6 @@
     </parent>
     </parent>
 
 
     <dependencies>
     <dependencies>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-web</artifactId>
-        </dependency>
         <dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-websocket</artifactId>
             <artifactId>spring-boot-starter-websocket</artifactId>
@@ -26,14 +22,11 @@
             <groupId>org.springframework</groupId>
             <groupId>org.springframework</groupId>
             <artifactId>spring-messaging</artifactId>
             <artifactId>spring-messaging</artifactId>
         </dependency>
         </dependency>
-        <dependency>
-            <groupId>com.fasterxml.jackson.core</groupId>
-            <artifactId>jackson-databind</artifactId>
-        </dependency>
     </dependencies>
     </dependencies>
 
 
     <properties>
     <properties>
         <start-class>hello.Application</start-class>
         <start-class>hello.Application</start-class>
+        <java.version>1.7</java.version>
     </properties>
     </properties>
 
 
     <build>
     <build>