changeset 27:a119766f44bc

Remove leftover pom review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-October/025337.html reviewed-by: jkang
author Mario Torre <neugens.limasoftware@gmail.com>
date Thu, 12 Oct 2017 13:01:38 +0200
parents 33cf0b946e3d
children 00540d33ce40
files common/type-system/pom.xml
diffstat 1 files changed, 0 insertions(+), 128 deletions(-) [+]
line wrap: on
line diff
--- a/common/type-system/pom.xml	Wed Oct 11 10:35:59 2017 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,128 +0,0 @@
-<?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">
-    <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>com.redhat.thermostat</groupId>
-        <artifactId>base-common</artifactId>
-        <version>1.99.12-SNAPSHOT</version>
-    </parent>
-
-    <groupId>com.redhat.thermostat.lang.schema</groupId>
-    <artifactId>thermostat-lang-schema</artifactId>
-    <version>1.99.12-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-
-    <properties>
-        <thermostat.java.version>1.7</thermostat.java.version>
-
-        <!-- OSGi stuff -->
-        <osgi.core.version>4.3.1</osgi.core.version>
-        <osgi.compendium.version>4.3.1</osgi.compendium.version>
-        <osgi.compendium.osgi-version>4.3.1.201210102024</osgi.compendium.osgi-version>
-        <osgi.compendium.bundle.symbolic-name>osgi.cmpn</osgi.compendium.bundle.symbolic-name>
-        <felix.framework.version>4.2.0</felix.framework.version>
-        <felix.scr.version>1.8.2</felix.scr.version>
-        <felix.scr.annotations.version>1.9.12</felix.scr.annotations.version>
-
-        <gson.version>2.2.2</gson.version>
-        <junit.version>4.10</junit.version>
-
-    </properties>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <!--
-                     3.6+ is JDK 9 compatible. See:
-                     https://cwiki.apache.org/confluence/display/MAVEN/Java+9+-+Jigsaw
-                 -->
-                <version>3.6.1</version>
-                <configuration>
-                    <fork>true</fork>
-                    <meminitial>128m</meminitial>
-                    <maxmem>1024m</maxmem>
-                    <source>${thermostat.java.version}</source>
-                    <target>${thermostat.java.version}</target>
-                </configuration>
-            </plugin>
-
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <extensions>true</extensions>
-                <configuration>
-                    <instructions>
-                        <Bundle-SymbolicName>com.redhat.thermostat.lang.schema</Bundle-SymbolicName>
-                        <Bundle-Vendor>Red Hat, Inc.</Bundle-Vendor>
-                        <Export-Package>
-                            com.redhat.thermostat.lang.schema,
-                            com.redhat.thermostat.lang.schema.models,
-                            com.redhat.thermostat.lang.schema.annotations
-                        </Export-Package>
-                        <!-- TODO: For the thread tab (i.e. thread plug-in) the web server
-                             bundle requires model classes provided by said bundle. Since
-                             no explicit imports (in the Java import sense) are in our code,
-                             the maven bundle plugin seems to fail on us. Therefore we need
-                             these explicit Import-Package instructions. If not there, this
-                             results in class not found exceptions. This may be a problem
-                             for user-provided bundles which contribute DAOs/models in the
-                             same way. -->
-                        <Private-Package>
-                            com.redhat.thermostat.lang.schema.internal,
-                        </Private-Package>
-                        <!-- Do not autogenerate uses clauses in Manifests -->
-                        <_nouses>true</_nouses>
-                    </instructions>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-scr-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>generate-scr-scrdescriptor</id>
-                        <goals>
-                            <goal>scr</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.scr</artifactId>
-            <version>${felix.scr.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.framework</artifactId>
-            <version>${felix.framework.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.scr.annotations</artifactId>
-            <version>${felix.scr.annotations.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>com.google.code.gson</groupId>
-            <artifactId>gson</artifactId>
-            <version>${gson.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-
-</project>