Apache ServiceMix 5.x 完整版
Apache ServiceMix 5.x full version
我需要在没有直接连接到互联网的服务器上 运行 Apache ServiceMix。我找不到 Apache ServiceMix 5.1.4 的 "full" 程序集。较旧版本的 ServiceMix (4.5.3) 有完整版本可供下载。
5.1.4 的完整版本是否可用?如果有,在哪里?
http://servicemix.apache.org/downloads/servicemix-5.1.4.html
http://servicemix.apache.org/downloads/servicemix-4.5.3.html
您可以从 Apache 存档中找到 ASF 的所有版本。对于 ServiceMix,它在这里:http://archive.apache.org/dist/servicemix/
从 ServiceMix 5.0.0 开始,我们删除了 full 和 minimal 程序集和我们仅提供 default 程序集,它仅包含默认引导功能使用的包(请参阅 http://servicemix.396122.n5.nabble.com/DISCUSS-Which-assemblies-to-keep-around-td5719173.html 下的讨论)
如果您有一个要在 ServiceMix 上部署的项目,您可以向您的项目添加一个新模块,该模块运行 features-maven-plugin
的 add-features-to-repo
目标并压缩所有内容。接下来,您可以交付包含所有捆绑包的 zip 文件
您需要在 ServiceMix 上安装的所有功能。
感谢 KSobkowiak 的回答,它为我指明了正确的方向。我发布了我用来获取自定义 ServiceMix 5.x up 和 运行ning 的步骤,以防其他人需要这样做。说明假定 Linux,但 windows 步骤应该类似。
1) 下载并解压 ServiceMix 和 Maven
cd /opt
unzip apache-servicemix-5.1.4.zip
unzip apache-maven-3.0.3.zip
2) 配置maven proxy,如果需要:
3) 创建maven项目目录
mkdir serviceMix_features
cd serviceMix_features
4) 使用以下 xml 创建一个 maven pom 文件。我通过 servicemix 控制台中的 运行ning features:listurl
命令获得了描述符列表。这些功能将是您在自定义 servicemix 发行版中需要的任何功能,在这种情况下,我将添加 webconsole 和几个 camel 组件。
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>my.group</groupId>
<artifactId>custom-servicemix</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>My custom service mix repository</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>features-maven-plugin</artifactId>
<version>2.3.9</version>
<executions>
<execution>
<id>add-features-to-repo</id>
<phase>generate-resources</phase>
<goals>
<goal>add-features-to-repo</goal>
</goals>
<configuration>
<descriptors>
<descriptor>mvn:org.apache.camel.karaf/apache-camel/2.13.3/xml/features</descriptor>
<descriptor>mvn:org.apache.servicemix/apache-servicemix/5.1.4/xml/internal</descriptor>
<descriptor>mvn:org.apache.activemq/activemq-karaf/5.10.0/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.assemblies.features/standard/2.3.9/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.assemblies.features/enterprise/2.3.9/xml/features</descriptor>
<descriptor>mvn:org.apache.jclouds.karaf/jclouds-karaf/1.7.2/xml/features</descriptor>
<descriptor>mvn:org.apache.cxf.karaf/apache-cxf/2.7.13/xml/features</descriptor>
<descriptor>mvn:org.apache.servicemix/apache-servicemix/5.1.4/xml/features</descriptor>
<descriptor>mvn:org.apache.servicemix/apache-servicemix/5.1.4/xml/examples</descriptor>
<descriptor>mvn:org.ops4j.pax.cdi/pax-cdi-features/0.8.0/xml/features</descriptor>
<descriptor>mvn:org.apache.activemq/activemq-karaf/5.10.0/xml/features-core</descriptor>
</descriptors>
<features>
<feature>webconsole</feature>
<feature>camel-restlet</feature>
<feature>camel-jackson</feature>
</features>
<repository>target/features-repo</repository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
5) 执行maven项目。我注意到有时 Maven 会中途失败。重试后,我注意到它每次都拉入了额外的罐子 运行,最终在第四次尝试中成功了。
/opt/apache-maven-3.0.3/bin/mvn install
6) 在默认服务组合发行版上覆盖 maven 文件。
cp -Rvn target/features_repo/* /opt/apache-servicemix-5.1.4/system/
7) zip 或 tar 您的自定义服务混合发行版并将其移动到您需要的地方。如果您使用的是代理,则可以取消配置 maven 代理并清除您的 maven 存储库以验证服务组合是否已从服务组合控制台正确更新。
features:install webconsole
我需要在没有直接连接到互联网的服务器上 运行 Apache ServiceMix。我找不到 Apache ServiceMix 5.1.4 的 "full" 程序集。较旧版本的 ServiceMix (4.5.3) 有完整版本可供下载。
5.1.4 的完整版本是否可用?如果有,在哪里?
http://servicemix.apache.org/downloads/servicemix-5.1.4.html http://servicemix.apache.org/downloads/servicemix-4.5.3.html
您可以从 Apache 存档中找到 ASF 的所有版本。对于 ServiceMix,它在这里:http://archive.apache.org/dist/servicemix/
从 ServiceMix 5.0.0 开始,我们删除了 full 和 minimal 程序集和我们仅提供 default 程序集,它仅包含默认引导功能使用的包(请参阅 http://servicemix.396122.n5.nabble.com/DISCUSS-Which-assemblies-to-keep-around-td5719173.html 下的讨论)
如果您有一个要在 ServiceMix 上部署的项目,您可以向您的项目添加一个新模块,该模块运行 features-maven-plugin
的 add-features-to-repo
目标并压缩所有内容。接下来,您可以交付包含所有捆绑包的 zip 文件
您需要在 ServiceMix 上安装的所有功能。
感谢 KSobkowiak 的回答,它为我指明了正确的方向。我发布了我用来获取自定义 ServiceMix 5.x up 和 运行ning 的步骤,以防其他人需要这样做。说明假定 Linux,但 windows 步骤应该类似。
1) 下载并解压 ServiceMix 和 Maven
cd /opt
unzip apache-servicemix-5.1.4.zip
unzip apache-maven-3.0.3.zip
2) 配置maven proxy,如果需要:
3) 创建maven项目目录
mkdir serviceMix_features
cd serviceMix_features
4) 使用以下 xml 创建一个 maven pom 文件。我通过 servicemix 控制台中的 运行ning features:listurl
命令获得了描述符列表。这些功能将是您在自定义 servicemix 发行版中需要的任何功能,在这种情况下,我将添加 webconsole 和几个 camel 组件。
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>my.group</groupId>
<artifactId>custom-servicemix</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>My custom service mix repository</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>features-maven-plugin</artifactId>
<version>2.3.9</version>
<executions>
<execution>
<id>add-features-to-repo</id>
<phase>generate-resources</phase>
<goals>
<goal>add-features-to-repo</goal>
</goals>
<configuration>
<descriptors>
<descriptor>mvn:org.apache.camel.karaf/apache-camel/2.13.3/xml/features</descriptor>
<descriptor>mvn:org.apache.servicemix/apache-servicemix/5.1.4/xml/internal</descriptor>
<descriptor>mvn:org.apache.activemq/activemq-karaf/5.10.0/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.assemblies.features/standard/2.3.9/xml/features</descriptor>
<descriptor>mvn:org.apache.karaf.assemblies.features/enterprise/2.3.9/xml/features</descriptor>
<descriptor>mvn:org.apache.jclouds.karaf/jclouds-karaf/1.7.2/xml/features</descriptor>
<descriptor>mvn:org.apache.cxf.karaf/apache-cxf/2.7.13/xml/features</descriptor>
<descriptor>mvn:org.apache.servicemix/apache-servicemix/5.1.4/xml/features</descriptor>
<descriptor>mvn:org.apache.servicemix/apache-servicemix/5.1.4/xml/examples</descriptor>
<descriptor>mvn:org.ops4j.pax.cdi/pax-cdi-features/0.8.0/xml/features</descriptor>
<descriptor>mvn:org.apache.activemq/activemq-karaf/5.10.0/xml/features-core</descriptor>
</descriptors>
<features>
<feature>webconsole</feature>
<feature>camel-restlet</feature>
<feature>camel-jackson</feature>
</features>
<repository>target/features-repo</repository>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
5) 执行maven项目。我注意到有时 Maven 会中途失败。重试后,我注意到它每次都拉入了额外的罐子 运行,最终在第四次尝试中成功了。
/opt/apache-maven-3.0.3/bin/mvn install
6) 在默认服务组合发行版上覆盖 maven 文件。
cp -Rvn target/features_repo/* /opt/apache-servicemix-5.1.4/system/
7) zip 或 tar 您的自定义服务混合发行版并将其移动到您需要的地方。如果您使用的是代理,则可以取消配置 maven 代理并清除您的 maven 存储库以验证服务组合是否已从服务组合控制台正确更新。
features:install webconsole