Pretty formatting.

This commit is contained in:
Manuele Simi 2019-05-21 21:57:24 -04:00
parent d325bf6b93
commit 297136ed76
1 changed files with 52 additions and 54 deletions

106
pom.xml
View File

@ -23,7 +23,7 @@
</pluginRepository> </pluginRepository>
<pluginRepository> <pluginRepository>
<id>gcube-releases</id> <id>gcube-releases</id>
<name>gCube Releases</name> <name>gCube Releases</name>
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/gcube-releases</url> <url>http://maven.research-infrastructures.eu/nexus/content/repositories/gcube-releases</url>
<snapshots> <snapshots>
<enabled>false</enabled> <enabled>false</enabled>
@ -48,9 +48,9 @@
<profiles> <profiles>
<!-- this profile sets an additional parameter for javadoc generation that disable the doclint (it makes <!-- This profile sets an additional parameter for javadoc generation to disables the doclint.
component build fail if formal/syntax errors are found in javadoc comments). It avoids the build fails if formal/syntax errors are found in javadoc comments.
The parameter is only understood by jdk 1.8, so we set it only when jdk 1.8 is used --> The parameter is only understood by jdk 1.8, so we set it only when jdk 1.8 is used -->
<profile> <profile>
<id>disable-java8-doclint</id> <id>disable-java8-doclint</id>
<activation> <activation>
@ -201,24 +201,24 @@
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version> <version>2.6</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.gcube.tools</groupId> <groupId>org.gcube.tools</groupId>
<artifactId>shared-assemblies</artifactId> <artifactId>shared-assemblies</artifactId>
<version>1.1.0</version> <version>1.1.0</version>
</dependency> </dependency>
</dependencies> </dependencies>
<executions> <executions>
<!-- uberjar creation --> <!-- uberjar creation -->
<execution> <execution>
<id>make-uberjar</id> <id>make-uberjar</id>
<configuration> <configuration>
<descriptorRefs> <descriptorRefs>
<descriptorRef>gcube-uberjar</descriptorRef> <descriptorRef>gcube-uberjar</descriptorRef>
</descriptorRefs> </descriptorRefs>
<!-- <!--
override the plugin-scope configuration that some components have in their pom: override the plugin-scope configuration that some components have in their pom:
<descriptors> <descriptors>
@ -227,27 +227,27 @@
If not done, the servicearchive will be built also during this execution. If not done, the servicearchive will be built also during this execution.
--> -->
<descriptors combine.self="override"></descriptors> <descriptors combine.self="override"></descriptors>
<!-- <!--
make sure the "-src" is appended to the filename. It is the default make sure the "-src" is appended to the filename. It is the default
behaviour but it has been set explicitly because some components behaviour but it has been set explicitly because some components
(e.g. ghn-distribution) set it to false in their pom (e.g. ghn-distribution) set it to false in their pom
--> -->
<appendAssemblyId>true</appendAssemblyId> <appendAssemblyId>true</appendAssemblyId>
</configuration> </configuration>
<goals> <goals>
<goal>single</goal> <goal>single</goal>
</goals> </goals>
</execution> </execution>
<!-- default servicearchive creation--> <!-- default servicearchive creation-->
<execution> <execution>
<id>make-servicearchive</id> <id>make-servicearchive</id>
<configuration> <configuration>
<descriptorRefs> <descriptorRefs>
<descriptorRef>gcube-default-servicearchive</descriptorRef> <descriptorRef>gcube-default-servicearchive</descriptorRef>
</descriptorRefs> </descriptorRefs>
<!-- <!--
override the plugin-scope configuration that some components have in their pom: override the plugin-scope configuration that some components have in their pom:
@ -257,28 +257,26 @@
If not done, the servicearchive will be built also during this execution. If not done, the servicearchive will be built also during this execution.
--> -->
<descriptors combine.self="override"></descriptors> <descriptors combine.self="override"></descriptors>
<!-- <!--
make sure the "-src" is appended to the filename. It is the default make sure the "-src" is appended to the filename. It is the default
behaviour but it has been set explicitly because some components behaviour but it has been set explicitly because some components
(e.g. ghn-distribution) set it to false in their pom (e.g. ghn-distribution) set it to false in their pom
--> -->
<appendAssemblyId>true</appendAssemblyId> <appendAssemblyId>true</appendAssemblyId>
</configuration> </configuration>
<goals> <goals>
<goal>single</goal> <goal>single</goal>
</goals> </goals>
</execution> </execution>
<!-- source package creation --> <!-- source package creation -->
<execution> <execution>
<id>make-source-package</id> <id>make-source-package</id>
<configuration> <configuration>
<descriptorRefs> <descriptorRefs>
<descriptorRef>gcube-source-package</descriptorRef> <descriptorRef>gcube-source-package</descriptorRef>
</descriptorRefs> </descriptorRefs>
<!-- <!--
override the plugin-scope configuration that some components have in their pom: override the plugin-scope configuration that some components have in their pom:
@ -295,12 +293,12 @@
behaviour but it has been set explicitly because some components behaviour but it has been set explicitly because some components
(e.g. ghn-distribution) set it to false in their pom (e.g. ghn-distribution) set it to false in their pom
--> -->
<appendAssemblyId>true</appendAssemblyId> <appendAssemblyId>true</appendAssemblyId>
</configuration> </configuration>
<goals> <goals>
<goal>single</goal> <goal>single</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>