WIP
[maven-thymeleaf-skin] / pom.xml
diff --git a/pom.xml b/pom.xml
index 4a571c0..e4725e1 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -2,14 +2,8 @@
 
   <modelVersion>4.0.0</modelVersion>
 
-  <parent>
-    <groupId>org.springframework.boot</groupId>
-    <artifactId>spring-boot-starter-parent</artifactId>
-    <version>1.3.5.RELEASE</version>
-  </parent>
-
-  <groupId>de.juplo</groupId>
-  <artifactId>thymeproxy-starter</artifactId>
+  <groupId>de.juplo.jackson</groupId>
+  <artifactId>simple-mapping</artifactId>
   <version>1.0-SNAPSHOT</version>
 
   <properties>
     <maven.compiler.target>1.8</maven.compiler.target>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 
-    <!-- application-settings -->
-    <thymeproxy.name>${project.name}</thymeproxy.name>
-    <thymeproxy.origin>http://localhost:8080</thymeproxy.origin>
-    <thymeproxy.port>8888</thymeproxy.port>
-    <thymeproxy.ttl>300000</thymeproxy.ttl><!-- 5 minutes -->
-    <thymeproxy.cacheable>true</thymeproxy.cacheable>
-    <httpclient.logging.level>ERROR</httpclient.logging.level>
-
-    <!-- used versions (not defined in spring-boot) -->
-    <httpclient-spring-boot-starter.version>1.0-SNAPSHOT</httpclient-spring-boot-starter.version>
-    <thymeproxy.version>1.0-SNAPSHOT</thymeproxy.version>
-
   </properties>
 
   <dependencies>
 
-    <dependency>
-      <groupId>org.springframework.boot</groupId>
-      <artifactId>spring-boot-starter-web</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.springframework.boot</groupId>
-      <artifactId>spring-boot-starter-thymeleaf</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>de.juplo</groupId>
-      <artifactId>thymeproxy</artifactId>
-      <version>${thymeproxy.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>de.juplo</groupId>
-      <artifactId>httpclient-spring-boot-starter</artifactId>
-      <version>${httpclient-spring-boot-starter.version}</version>
-    </dependency>
-
-    <!-- Httpclient -->
-    <dependency>
-      <groupId>org.apache.httpcomponents</groupId>
-      <artifactId>httpclient</artifactId>
-    </dependency>
-
-    <!-- Needed to parse HTML5 with Thymeleaf -->
-    <dependency>
-      <groupId>net.sourceforge.nekohtml</groupId>
-      <artifactId>nekohtml</artifactId>
-      <version>${nekohtml.version}</version>
-    </dependency>
-
-    <!-- Needed to parse JSON -->
     <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-annotations</artifactId>
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-databind</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+
 
+    <!-- Testing -->
     <dependency>
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-classic</artifactId>
-      <scope>runtime</scope>
+      <scope>test</scope>
     </dependency>
 
   </dependencies>
 
-  <build>
-    <plugins>
-      <plugin>
+  <dependencyManagement>
+     <dependencies>
+      <dependency>
+        <!-- Import dependency management from Spring Boot -->
         <groupId>org.springframework.boot</groupId>
-        <artifactId>spring-boot-maven-plugin</artifactId>
-        <!-- Needed, because otherwise, filtering of maven properties won't work -->
-        <configuration>
-          <addResources>false</addResources>
-        </configuration>
-        <dependencies>
-          <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>springloaded</artifactId>
-            <version>1.2.4.RELEASE</version>
-          </dependency>
-        </dependencies>
-      </plugin>
-    </plugins>
-  </build>
+        <artifactId>spring-boot-dependencies</artifactId>
+        <version>1.3.5.RELEASE</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
 
 </project>