You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by da...@apache.org on 2016/07/01 15:54:15 UTC

svn commit: r1750970 - in /felix/trunk/converter: pom.xml src/main/resources/ src/main/resources/META-INF/ src/main/resources/META-INF/services/ src/main/resources/META-INF/services/org.osgi.service.converter.Converter

Author: davidb
Date: Fri Jul  1 15:54:15 2016
New Revision: 1750970

URL: http://svn.apache.org/viewvc?rev=1750970&view=rev
Log:
Felix Converter Service - add service loader support

Added:
    felix/trunk/converter/src/main/resources/
    felix/trunk/converter/src/main/resources/META-INF/
    felix/trunk/converter/src/main/resources/META-INF/services/
    felix/trunk/converter/src/main/resources/META-INF/services/org.osgi.service.converter.Converter
Modified:
    felix/trunk/converter/pom.xml

Modified: felix/trunk/converter/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/converter/pom.xml?rev=1750970&r1=1750969&r2=1750970&view=diff
==============================================================================
--- felix/trunk/converter/pom.xml (original)
+++ felix/trunk/converter/pom.xml Fri Jul  1 15:54:15 2016
@@ -72,6 +72,27 @@
                     </instructions>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <includes>
+                        <include>src/**</include>
+                    </includes>
+                    <excludes>
+                        <exclude>src/main/resources/META-INF/services/org.osgi.service.converter.Converter</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            
         </plugins>
     </build>
 

Added: felix/trunk/converter/src/main/resources/META-INF/services/org.osgi.service.converter.Converter
URL: http://svn.apache.org/viewvc/felix/trunk/converter/src/main/resources/META-INF/services/org.osgi.service.converter.Converter?rev=1750970&view=auto
==============================================================================
--- felix/trunk/converter/src/main/resources/META-INF/services/org.osgi.service.converter.Converter (added)
+++ felix/trunk/converter/src/main/resources/META-INF/services/org.osgi.service.converter.Converter Fri Jul  1 15:54:15 2016
@@ -0,0 +1 @@
+org.apache.felix.converter.impl.ConverterService
\ No newline at end of file