Author: jbonofre
Date: Mon May 16 15:03:13 2011
New Revision: 1103761
URL: http://svn.apache.org/viewvc?rev=1103761&view=rev
Log:
[ACE-146] Creation of the ACE Karaf features descriptor.
Added:
incubator/ace/trunk/ace-features/
incubator/ace/trunk/ace-features/pom.xml
incubator/ace/trunk/ace-features/src/
incubator/ace/trunk/ace-features/src/main/
incubator/ace/trunk/ace-features/src/main/resources/
incubator/ace/trunk/ace-features/src/main/resources/features.xml
Modified:
incubator/ace/trunk/pom.xml
Added: incubator/ace/trunk/ace-features/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/ace-features/pom.xml?rev=1103761&view=auto
==============================================================================
--- incubator/ace/trunk/ace-features/pom.xml (added)
+++ incubator/ace/trunk/ace-features/pom.xml Mon May 16 15:03:13 2011
@@ -0,0 +1,82 @@
+<?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.ace</groupId>
+ <artifactId>ace-pom</artifactId>
+ <version>0.8.0-incubator</version>
+ <relativePath>../pom/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>apache-ace</artifactId>
+ <packaging>pom</packaging>
+ <name>Apache ACE :: Features</name>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ <filtering>true</filtering>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>filter</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>resources</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.5</version>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+ <file>target/classes/features.xml</file>
+ <classifier>features</classifier>
+ <type>xml</type>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
\ No newline at end of file
Added: incubator/ace/trunk/ace-features/src/main/resources/features.xml
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/ace-features/src/main/resources/features.xml?rev=1103761&view=auto
==============================================================================
--- incubator/ace/trunk/ace-features/src/main/resources/features.xml (added)
+++ incubator/ace/trunk/ace-features/src/main/resources/features.xml Mon May 16 15:03:13 2011
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<features>
+
+ <!--
+
+ 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.
+ -->
+
+ <feature name="ace-common" version="${project.version}" resolver="(obr)">
+ <feature>eventadmin</feature>
+ <!-- TODO add OSGi compendium dependency -->
+ <bundle>mvn:org.apache.felix/org.apache.felix.dependencymanager/${felix.dependencymanager.version}</bundle>
+ <bundle>mvn:org.apache.felix/org.apache.felix.dependencymanager.shell/${felix.dependencymanager.version}</bundle>
+ <bundle>mvn:org.apache.felix/org.apache.felix.deploymentadmin/${felix.deploymentadmin.version}</bundle>
+ <bundle>mvn:org.apache.felix/org.apache.felix.prefs/${felix.prefs.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.log/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.log.servlet/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.consolelogger/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.range.api/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.httplistener/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.resourceprocessor.useradmin/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.server.log.store/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.tageditor/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-client" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.client.repository.api/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.client.repository.helper.base/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.client.repository.helper.bundle/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.client.repository.helper.configuration/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.client.repository.impl/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-configurator" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.configurator/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.configurator.serveruseradmin/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.configurator.useradmin.task/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-deployment" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.deployment.api/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.deployment.deploymentadmin/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.deployment.task/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.deployment.provider.api/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.deployment.provider.repositorybased/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.deployment.servlet/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.deployment.streamgenerator/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-discovery" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.discovery.api/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.discovery.property/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-nodelauncher" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.nodelauncher.api/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.nodelauncher.amazon/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.nodelauncher.ui/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-obr" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.obr.metadata/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.obr.storage/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.obr.servlet/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-repository" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.repository.api/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.repository.impl/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.repository.servlet/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-scheduler" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.scheduler/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-webconsole" version="${project.version}" resolver="(obr)">
+ <feature>war</feature>
+ <bundle>mvn:com.vaadin/vaadin/${vaadin.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.webconsole.plugin/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.webui.vaadin/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-server" version="${project.version}" resolver="(obr)">
+ <!-- TODO provided features assembly -->
+ </feature>
+
+ <feature name="ace-agent" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.managementagent/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-gateway" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.gateway.log/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.gateway.log.store/${project.version}</bundle>
+ </feature>
+
+ <feature name="ace-identification" version="${project.version}" resolver="(obr)">
+ <bundle>mvn:org.apache.ace/org.apache.ace.identification.api/${project.version}</bundle>
+ <bundle>mvn:org.apache.ace/org.apache.ace.identification.property/${project.version}</bundle>
+ </feature>
+
+</features>
\ No newline at end of file
Modified: incubator/ace/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ace/trunk/pom.xml?rev=1103761&r1=1103760&r2=1103761&view=diff
==============================================================================
--- incubator/ace/trunk/pom.xml (original)
+++ incubator/ace/trunk/pom.xml Mon May 16 15:03:13 2011
@@ -116,6 +116,8 @@
<module>ace-managementagent</module>
<module>ace-launcher</module>
+ <module>ace-features</module>
+
<module>ace-target-defaults</module>
<module>ace-target-devgateway</module>
<module>ace-target-devserver</module>
|