org.springframework.roo.osgi.roo.bundle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.osgi.roo.bundle</artifactId>
<version>1.3.2.RELEASE</version>
</dependency><?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.osgi.bundle</artifactId>
<version>1.3.2.RELEASE</version>
<relativePath>../osgi-bundle</relativePath>
</parent>
<artifactId>org.springframework.roo.osgi.roo.bundle</artifactId>
<packaging>pom</packaging>
<name>Spring Roo - OSGi Roo Bundle Module Parent</name>
<description>Provides POM configuration inheritence for standard Roo SCR-requiring modules.</description>
<!-- No modules should be defined below;
this module simply provides POM configuration inheritence - not reactor builds -->
<modules/>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>${scr.plugin.version}</version>
<executions>
<execution>
<id>generate-scr-scrdescriptor</id>
<!-- <phase>compile</phase> -->
<goals>
<goal>scr</goal>
</goals>
</execution>
</executions>
<configuration>
<parseJavaDoc>false</parseJavaDoc>
</configuration>
</plugin>
</plugins>
</build>
</project>