-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[maven-release-plugin] prepare release v1.17.16
- Loading branch information
Showing
8 changed files
with
192 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,84 @@ | ||
<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"> | ||
<parent> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_parent</artifactId> | ||
<version>1.17.16-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>AMW_angular</artifactId> | ||
<packaging>war</packaging> | ||
<name>AMW_angular</name> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-war-plugin</artifactId> | ||
<version>${version.war.plugin}</version> | ||
<configuration> | ||
<webResources> | ||
<!-- filter only the index HTML file --> | ||
<resource> | ||
<directory>io/dist</directory> | ||
<includes> | ||
<include>index.html</include> | ||
</includes> | ||
<filtering>true</filtering> | ||
</resource> | ||
<!-- everything else is not filtered --> | ||
<resource> | ||
<directory>io/dist</directory> | ||
<excludes> | ||
<exclude>index.html</exclude> | ||
</excludes> | ||
<filtering>false</filtering> | ||
</resource> | ||
</webResources> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.github.eirslett</groupId> | ||
<artifactId>frontend-maven-plugin</artifactId> | ||
<version>1.6</version> | ||
<configuration> | ||
<nodeVersion>v12.14.1</nodeVersion> | ||
<npmVersion>6.13.4</npmVersion> | ||
<workingDirectory>io</workingDirectory> | ||
<installDirectory>${user.home}/.node</installDirectory> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>install node and npm</id> | ||
<phase>initialize</phase> | ||
<goals> | ||
<goal>install-node-and-npm</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>npm install</id> | ||
<phase>initialize</phase> | ||
<goals> | ||
<goal>npm</goal> | ||
</goals> | ||
<configuration> | ||
<arguments>install --no-optional</arguments> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>npm run-script mavenbuild</id> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>npm</goal> | ||
</goals> | ||
<configuration> | ||
<arguments>run-script mavenbuild</arguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
|
||
<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"> | ||
<parent> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_parent</artifactId> | ||
<version>1.17.16</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>AMW_angular</artifactId> | ||
<packaging>war</packaging> | ||
<name>AMW_angular</name> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-war-plugin</artifactId> | ||
<version>${version.war.plugin}</version> | ||
<configuration> | ||
<webResources> | ||
<!-- filter only the index HTML file --> | ||
<resource> | ||
<directory>io/dist</directory> | ||
<includes> | ||
<include>index.html</include> | ||
</includes> | ||
<filtering>true</filtering> | ||
</resource> | ||
<!-- everything else is not filtered --> | ||
<resource> | ||
<directory>io/dist</directory> | ||
<excludes> | ||
<exclude>index.html</exclude> | ||
</excludes> | ||
<filtering>false</filtering> | ||
</resource> | ||
</webResources> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.github.eirslett</groupId> | ||
<artifactId>frontend-maven-plugin</artifactId> | ||
<version>1.6</version> | ||
<configuration> | ||
<nodeVersion>v12.14.1</nodeVersion> | ||
<npmVersion>6.13.4</npmVersion> | ||
<workingDirectory>io</workingDirectory> | ||
<installDirectory>${user.home}/.node</installDirectory> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>install node and npm</id> | ||
<phase>initialize</phase> | ||
<goals> | ||
<goal>install-node-and-npm</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>npm install</id> | ||
<phase>initialize</phase> | ||
<goals> | ||
<goal>npm</goal> | ||
</goals> | ||
<configuration> | ||
<arguments>install --no-optional</arguments> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>npm run-script mavenbuild</id> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>npm</goal> | ||
</goals> | ||
<configuration> | ||
<arguments>run-script mavenbuild</arguments> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,95 @@ | ||
<?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"> | ||
<parent> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_parent</artifactId> | ||
<version>1.17.16-SNAPSHOT</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>AMW_ear</artifactId> | ||
<packaging>ear</packaging> | ||
<name>AMW_ear</name> | ||
|
||
<profiles> | ||
<profile> | ||
<id>default-profile</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<build> | ||
<finalName>AMW</finalName> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-ear-plugin</artifactId> | ||
<configuration> | ||
|
||
<!-- Tell Maven we are using Java EE 6 --> | ||
<version>6</version> | ||
<!-- Use Java EE ear libraries as needed. Java EE ear libraries are | ||
in easy way to package any libraries needed in the ear, and automatically | ||
have any modules (EJB-JARs and WARs) use them --> | ||
<defaultLibBundleDir>lib</defaultLibBundleDir> | ||
<modules> | ||
<jarModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_commons</artifactId> | ||
<bundleFileName>AMW_commons.jar</bundleFileName> | ||
</jarModule> | ||
<ejbModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_business</artifactId> | ||
<bundleFileName>AMW_business.jar</bundleFileName> | ||
</ejbModule> | ||
<webModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_web</artifactId> | ||
<bundleFileName>AMW_web.war</bundleFileName> | ||
</webModule> | ||
<webModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_angular</artifactId> | ||
<bundleFileName>AMW_angular.war</bundleFileName> | ||
</webModule> | ||
<webModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_rest</artifactId> | ||
<bundleFileName>AMW_rest.war</bundleFileName> | ||
</webModule> | ||
</modules> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<!-- Depend on the ejb module and war so that we can package them --> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_commons</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_business</artifactId> | ||
<type>ejb</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_web</artifactId> | ||
<type>war</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_angular</artifactId> | ||
<type>war</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_rest</artifactId> | ||
<type>war</type> | ||
</dependency> | ||
</dependencies> | ||
</profile> | ||
</profiles> | ||
</project> | ||
<?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"> | ||
<parent> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_parent</artifactId> | ||
<version>1.17.16</version> | ||
<relativePath>..</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>AMW_ear</artifactId> | ||
<packaging>ear</packaging> | ||
<name>AMW_ear</name> | ||
|
||
<profiles> | ||
<profile> | ||
<id>default-profile</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<build> | ||
<finalName>AMW</finalName> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-ear-plugin</artifactId> | ||
<configuration> | ||
|
||
<!-- Tell Maven we are using Java EE 6 --> | ||
<version>6</version> | ||
<!-- Use Java EE ear libraries as needed. Java EE ear libraries are | ||
in easy way to package any libraries needed in the ear, and automatically | ||
have any modules (EJB-JARs and WARs) use them --> | ||
<defaultLibBundleDir>lib</defaultLibBundleDir> | ||
<modules> | ||
<jarModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_commons</artifactId> | ||
<bundleFileName>AMW_commons.jar</bundleFileName> | ||
</jarModule> | ||
<ejbModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_business</artifactId> | ||
<bundleFileName>AMW_business.jar</bundleFileName> | ||
</ejbModule> | ||
<webModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_web</artifactId> | ||
<bundleFileName>AMW_web.war</bundleFileName> | ||
</webModule> | ||
<webModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_angular</artifactId> | ||
<bundleFileName>AMW_angular.war</bundleFileName> | ||
</webModule> | ||
<webModule> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_rest</artifactId> | ||
<bundleFileName>AMW_rest.war</bundleFileName> | ||
</webModule> | ||
</modules> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<!-- Depend on the ejb module and war so that we can package them --> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_commons</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_business</artifactId> | ||
<type>ejb</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_web</artifactId> | ||
<type>war</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_angular</artifactId> | ||
<type>war</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.puzzle.itc.mobiliar</groupId> | ||
<artifactId>AMW_rest</artifactId> | ||
<type>war</type> | ||
</dependency> | ||
</dependencies> | ||
</profile> | ||
</profiles> | ||
</project> |
Oops, something went wrong.