release version 1.10.0
This commit is contained in:
208
system/pom.xml
208
system/pom.xml
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>ru.entaxy.esb</groupId>
|
||||
<artifactId>root</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<version>1.10.0</version>
|
||||
</parent>
|
||||
|
||||
<groupId>ru.entaxy.esb.system</groupId>
|
||||
@ -19,213 +19,7 @@
|
||||
<modules>
|
||||
<module>core</module>
|
||||
<module>commons</module>
|
||||
<module>auth</module>
|
||||
<module>registry</module>
|
||||
<module>system-management</module>
|
||||
</modules>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>false</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.soebes.maven.plugins</groupId>
|
||||
<artifactId>iterator-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<skip>true</skip>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>system-cfg-install</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>src/main/cfg/ru.entaxy.esb.cfg</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/features</directory>
|
||||
<filtering>true</filtering>
|
||||
<targetPath>${project.build.directory}/features</targetPath>
|
||||
</resource>
|
||||
<resource>
|
||||
<directory>src/main/cfg</directory>
|
||||
<filtering>true</filtering>
|
||||
<targetPath>${project.build.directory}/cfg</targetPath>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>resources</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-artifacts</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>attach-artifact</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifacts>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.deployer.cellar.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.deployer.cellar</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.deployer.file.system.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.deployer.file.system</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.deployer.nexus.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.deployer.nexus</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.error.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.error</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.error.code.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.error.code</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.error.text.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.error.text</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.system.basic_auth.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.system.basic_auth</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.system.basic_auth.htpasswd.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.system.basic_auth.htpasswd</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.system.event.handler.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.system.event.handler</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.system.event.rest.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.system.event.rest</classifier>
|
||||
</artifact>
|
||||
<artifact>
|
||||
<file>target/cfg/ru.entaxy.esb.system.management.cfg</file>
|
||||
<type>cfg</type>
|
||||
<classifier>ru.entaxy.esb.system.management</classifier>
|
||||
</artifact>
|
||||
</artifacts>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>features-basics</id>
|
||||
<build>
|
||||
<!-- resources>
|
||||
<resource>
|
||||
<directory>src/main/features</directory>
|
||||
<filtering>true</filtering>
|
||||
<includes>
|
||||
<include>**/features.xml</include>
|
||||
</includes>
|
||||
<targetPath>${project.build.directory}/features</targetPath>
|
||||
</resource>
|
||||
</resources -->
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>copy-features-bsics</id>
|
||||
<phase>validate</phase>
|
||||
<goals>
|
||||
<goal>copy-resources</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<outputDirectory>${project.build.directory}/features</outputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/features</directory>
|
||||
<filtering>true</filtering>
|
||||
<includes>
|
||||
<include>**/basics.xml</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-features-basics</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>attach-artifact</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifacts>
|
||||
<artifact>
|
||||
<file>target/features/basics.xml</file>
|
||||
<type>xml</type>
|
||||
<classifier>basics</classifier>
|
||||
</artifact>
|
||||
</artifacts>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>src/main/features/basics.xml</exists>
|
||||
</file>
|
||||
</activation>
|
||||
</profile>
|
||||
|
||||
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
Reference in New Issue
Block a user