You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2018/06/19 14:52:37 UTC

[1/2] servicemix-bundles git commit: [SM-3742] Create OSGi bundle for Thymeleaf 3.0.9

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 4af1be5d7 -> e87f1bafe


[SM-3742] Create OSGi bundle for Thymeleaf 3.0.9


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/e19ecca7
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/e19ecca7
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/e19ecca7

Branch: refs/heads/master
Commit: e19ecca75cb72b2ac46ac423315eaef5d29f30da
Parents: 4af1be5
Author: Oliver Lietz <ol...@apache.org>
Authored: Tue Jun 12 22:43:48 2018 +0200
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Tue Jun 19 16:50:47 2018 +0200

----------------------------------------------------------------------
 pom.xml                                         |  1 +
 thymeleaf-3.0.9.RELEASE/pom.xml                 | 99 ++++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     | 15 +++
 3 files changed, 115 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/e19ecca7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d1dbb89..67dd52a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,6 +44,7 @@
     <modules>
         <module>c3p0-0.9.5.2</module>
         <module>aws-java-sdk-1.11.344</module>
+        <module>thymeleaf-3.0.9.RELEASE</module>
     </modules>
 
 </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/e19ecca7/thymeleaf-3.0.9.RELEASE/pom.xml
----------------------------------------------------------------------
diff --git a/thymeleaf-3.0.9.RELEASE/pom.xml b/thymeleaf-3.0.9.RELEASE/pom.xml
new file mode 100644
index 0000000..0c0f9e5
--- /dev/null
+++ b/thymeleaf-3.0.9.RELEASE/pom.xml
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+  <!--
+
+      Licensed to the Apache Software Foundation (ASF) under one or more
+      contributor license agreements.  See the NOTICE file distributed with
+      this work for additional information regarding copyright ownership.
+      The ASF licenses this file to You under the Apache License, Version 2.0
+      (the "License"); you may not use this file except in compliance with
+      the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+      Unless required by applicable law or agreed to in writing, software
+      distributed under the License is distributed on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+      See the License for the specific language governing permissions and
+      limitations under the License.
+  -->
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>bundles-pom</artifactId>
+    <version>13</version>
+    <relativePath>../bundles-pom/pom.xml</relativePath>
+  </parent>
+
+  <artifactId>org.apache.servicemix.bundles.thymeleaf</artifactId>
+  <version>3.0.9.RELEASE_1-SNAPSHOT</version>
+  <packaging>bundle</packaging>
+  <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+  <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+  <scm>
+    <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection>
+    <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection>
+    <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url>
+  </scm>
+
+  <properties>
+    <pkgGroupId>org.thymeleaf</pkgGroupId>
+    <pkgArtifactId>thymeleaf</pkgArtifactId>
+    <pkgVersion>3.0.9.RELEASE</pkgVersion>
+    <servicemix.osgi.export.pkg>
+      org.thymeleaf
+    </servicemix.osgi.export.pkg>
+    <servicemix.osgi.import.pkg>
+      javax.servlet.*;resolution:=optional,
+      com.fasterxml.jackson.*;resolution:=optional,
+      *
+    </servicemix.osgi.import.pkg>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>${pkgGroupId}</groupId>
+      <artifactId>${pkgArtifactId}</artifactId>
+      <version>${pkgVersion}</version>
+    </dependency>
+    <!-- sources -->
+    <dependency>
+      <groupId>${pkgGroupId}</groupId>
+      <artifactId>${pkgArtifactId}</artifactId>
+      <version>${pkgVersion}</version>
+      <classifier>sources</classifier>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <configuration>
+          <artifactSet>
+            <includes>
+              <include>${pkgGroupId}:${pkgArtifactId}</include>
+            </includes>
+          </artifactSet>
+          <filters>
+            <filter>
+              <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+              <includes>
+                <include>**/*.dtd</include>
+                <include>**/*.css</include>
+              </includes>
+            </filter>
+          </filters>
+          <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+          <createDependencyReducedPom>true</createDependencyReducedPom>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/e19ecca7/thymeleaf-3.0.9.RELEASE/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/thymeleaf-3.0.9.RELEASE/src/main/resources/OSGI-INF/bundle.info b/thymeleaf-3.0.9.RELEASE/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..cc9a32f
--- /dev/null
+++ b/thymeleaf-3.0.9.RELEASE/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,15 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Thymeleaf is a modern server-side Java template engine for both web and standalone environments.
+
+    Thymeleaf's main goal is to bring elegant natural templates to your development workflow — HTML that can be correctly displayed in browsers and also work as static prototypes, allowing for stronger collaboration in development teams.
+
+    With modules for Spring Framework, a host of integrations with your favourite tools, and the ability to plug in your own functionality, Thymeleaf is ideal for modern-day HTML5 JVM web development — although there is much more it can do.
+
+ \u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttps://www.thymeleaf.org\u001B[0m


[2/2] servicemix-bundles git commit: [SM-3742] This closes #129

Posted by jb...@apache.org.
[SM-3742] This closes #129


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/e87f1baf
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/e87f1baf
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/e87f1baf

Branch: refs/heads/master
Commit: e87f1bafe6b8b4aa80c5436174e6a17f31d8c5c0
Parents: 4af1be5 e19ecca
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Tue Jun 19 16:52:27 2018 +0200
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Tue Jun 19 16:52:27 2018 +0200

----------------------------------------------------------------------
 pom.xml                                         |  1 +
 thymeleaf-3.0.9.RELEASE/pom.xml                 | 99 ++++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     | 15 +++
 3 files changed, 115 insertions(+)
----------------------------------------------------------------------