Changeset 6873 for ComponentRegistry


Ignore:
Timestamp:
12/17/15 15:48:37 (8 years ago)
Author:
Twan Goosen
Message:

Front end included in output through artifact and dependency plugin.
Changed groupId to eu.clarin.cmdi

Location:
ComponentRegistry/branches/ComponentRegistry-2.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/branches/ComponentRegistry-2.0/ComponentRegistry/pom.xml

    r6861 r6873  
    44    <modelVersion>4.0.0</modelVersion>
    55    <parent>
    6         <groupId>clarin.cmdi</groupId>
     6        <groupId>eu.clarin.cmdi</groupId>
    77        <artifactId>componentRegistry.parent</artifactId>
    88        <version>1.0</version>
    99    </parent>
    10     <groupId>clarin.cmdi</groupId>
    11     <artifactId>ComponentRegistry</artifactId>
     10    <groupId>eu.clarin.cmdi</groupId>
     11    <artifactId>component-registry-rest</artifactId>
    1212    <packaging>${packaging}</packaging>
    1313    <version>${ComponentRegistry.version}</version>
     
    485485            </plugin>
    486486            <plugin>
     487                <groupId>org.apache.maven.plugins</groupId>
     488                <artifactId>maven-dependency-plugin</artifactId>
     489                <executions>
     490                    <execution>
     491                        <id>unpack-ui</id>
     492                        <phase>process-resources</phase>
     493                        <goals>
     494                            <goal>unpack</goal>
     495                        </goals>
     496                        <configuration>
     497                            <artifactItems>
     498                                <artifactItem>
     499                                    <groupId>${project.groupId}</groupId>
     500                                    <artifactId>component-registry-react-ui</artifactId>
     501                                    <version>${ComponentBrowserGui.version}</version>
     502                                    <overWrite>true</overWrite>
     503                                    <outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}</outputDirectory>
     504                                </artifactItem>
     505                            </artifactItems>
     506                        </configuration>
     507                    </execution>
     508                </executions>
     509            </plugin>
     510            <plugin>
    487511                <artifactId>maven-assembly-plugin</artifactId>
    488512                <version>2.2.2</version>
     
    522546    </build>
    523547
    524     <!--
    525                 <reporting>
    526                                 <plugins>
    527                                                 <plugin>
    528                                                                 <groupId>org.codehaus.mojo</groupId>
    529                                                                 <artifactId>findbugs-maven-plugin</artifactId>
    530                                                         <version>2.5.4-SNAPSHOT</version>
    531                                                                 <configuration>
    532                                                                         <excludeFilterFile>${basedir}/src/main/resources/findbugs-exclude.xml</excludeFilterFile>
    533                                                                         <threshold>Normal</threshold>
    534                                                                         <effort>Min</effort>
    535                                                                 </configuration>
    536                                                 </plugin>
    537                                 </plugins>
    538                 </reporting>
    539     -->
    540548    <repositories>
    541                 <repository>
    542                         <id>CLARIN</id>
    543                         <name>Clarin Repository</name>
    544                         <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
    545                 </repository>
     549        <repository>
     550            <id>CLARIN</id>
     551            <name>Clarin Repository</name>
     552            <url>https://nexus.clarin.eu/content/repositories/Clarin</url>
     553        </repository>
    546554    </repositories>
    547555</project>
  • ComponentRegistry/branches/ComponentRegistry-2.0/pom.xml

    r6871 r6873  
    44                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
    55  <modelVersion>4.0.0</modelVersion>
    6   <groupId>clarin.cmdi</groupId>
     6  <groupId>eu.clarin.cmdi</groupId>
    77  <artifactId>componentRegistry.parent</artifactId>
    88  <name>componentRegistry_parent</name>
     
    2121    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    2222    <ComponentRegistry.version>2.0-SNAPSHOT</ComponentRegistry.version>
     23    <ComponentBrowserGui.version>1.0.0-alpha-SNAPSHOT</ComponentBrowserGui.version>
    2324  </properties>
    2425 
Note: See TracChangeset for help on using the changeset viewer.