You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by ja...@apache.org on 2016/06/06 18:36:07 UTC

karaf git commit: use winsw release from Maven repo rather than checking in exe to source

Repository: karaf
Updated Branches:
  refs/heads/master 7a0d78ec9 -> 183fda5ff


use winsw release from Maven repo rather than checking in exe to source


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/183fda5f
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/183fda5f
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/183fda5f

Branch: refs/heads/master
Commit: 183fda5ff46cece1cbd870caa4ae4cc5d0894a80
Parents: 7a0d78e
Author: Jonathan Anstey <ja...@gmail.com>
Authored: Mon Jun 6 16:05:44 2016 -0230
Committer: Jonathan Anstey <ja...@gmail.com>
Committed: Mon Jun 6 16:05:44 2016 -0230

----------------------------------------------------------------------
 assemblies/features/base/pom.xml                   |  16 ++++++++++++++++
 .../resources/bin/contrib/karaf-service-win.exe    | Bin 59392 -> 0 bytes
 pom.xml                                            |   2 ++
 3 files changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/183fda5f/assemblies/features/base/pom.xml
----------------------------------------------------------------------
diff --git a/assemblies/features/base/pom.xml b/assemblies/features/base/pom.xml
index 27abdb8..cb62ad4 100644
--- a/assemblies/features/base/pom.xml
+++ b/assemblies/features/base/pom.xml
@@ -150,6 +150,15 @@
                                     <artifactId>${equinox.artifactId}</artifactId>
                                     <outputDirectory>target/classes/resources/system/${equinox.path}/${equinox.artifactId}/${equinox.version}</outputDirectory>
                                 </artifactItem>
+                                <artifactItem>
+                                    <groupId>com.sun.winsw</groupId>
+                                    <artifactId>winsw</artifactId>
+                                    <version>${winsw.version}</version>
+                                    <classifier>bin</classifier>
+                                    <type>exe</type>
+                                    <outputDirectory>target/classes/resources/bin/contrib</outputDirectory>
+                                    <destFileName>karaf-service-win.exe</destFileName>
+                                </artifactItem>
                             </artifactItems>
                         </configuration>
                     </execution>
@@ -178,4 +187,11 @@
         </plugins>
     </build>
 
+    <repositories>
+        <repository>
+            <id>jenkins</id>
+            <name>jenkins</name>
+            <url>http://repo.jenkins-ci.org/releases/</url>
+        </repository>
+    </repositories>
 </project>

http://git-wip-us.apache.org/repos/asf/karaf/blob/183fda5f/assemblies/features/base/src/main/resources/resources/bin/contrib/karaf-service-win.exe
----------------------------------------------------------------------
diff --git a/assemblies/features/base/src/main/resources/resources/bin/contrib/karaf-service-win.exe b/assemblies/features/base/src/main/resources/resources/bin/contrib/karaf-service-win.exe
deleted file mode 100644
index c6e8fc2..0000000
Binary files a/assemblies/features/base/src/main/resources/resources/bin/contrib/karaf-service-win.exe and /dev/null differ

http://git-wip-us.apache.org/repos/asf/karaf/blob/183fda5f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d15e7f9..d756115 100644
--- a/pom.xml
+++ b/pom.xml
@@ -290,6 +290,8 @@
         <xalan-serializer.bundle.version>2.7.2_1</xalan-serializer.bundle.version>
         <javax.mail.version>1.4.5</javax.mail.version>
 
+        <winsw.version>1.18</winsw.version>
+
         <!-- Further used maven plugin versions; e.g. in the docs -->
         <plugin.depends.version>1.3.1</plugin.depends.version>