Commit 5e9cad8c authored by CED SA's avatar CED SA

adding jar_html folder

parent c62958aa
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.0</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>axis</artifactId>
<packaging>pom</packaging>
<version>1.4.0.0000</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>axis</artifactId>
<version>1.4.0.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>axis-ant</artifactId>
<version>1.4.0.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>commons-discovery</artifactId>
<version>1.4.0.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jaxrpc</artifactId>
<version>1.4.0.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>saaj</artifactId>
<version>1.4.0.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>wsdl4j</artifactId>
<version>1.4.0.0000</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.2</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>computeagent-ora</artifactId>
<packaging>pom</packaging>
<version>0.0.32.0000</version>
<dependencies>
<dependency><artifactId>computeagent-exe-oracle</artifactId><version>0.0.32.0000</version><groupId>it.saga.extern.jar</groupId></dependency></dependencies>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.2</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>computeagent-oth</artifactId>
<packaging>pom</packaging>
<version>0.0.32.0000</version>
<dependencies>
<dependency><artifactId>computeagent-exe-other</artifactId><version>0.0.32.0000</version><groupId>it.saga.extern.jar</groupId></dependency></dependencies>
</project>
\ No newline at end of file
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.service</groupId>
<artifactId>GPX_CA_SRV-srv</artifactId>
<version>0.0.35.0000</version>
</parent>
<groupId>it.maggioli.service</groupId>
<artifactId>computeagent-srv</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>properties-to-lowercase</id>
<goals>
<goal>regex-property</goal>
</goals>
<configuration>
<name>appPrefixLower</name>
<regex>.*</regex>
<value>${appPrefix}</value>
<replacement>$0</replacement>
<failIfNoMatch>false</failIfNoMatch>
<toLowerCase>true</toLowerCase>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>copy-resources for deploy</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.services.target.folder}/WEB-INF</outputDirectory>
<resources>
<resource>
<directory>src/main/resources/WEB-INF</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>copy-resources for packaging</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}/WEB-INF</outputDirectory>
<resources>
<resource>
<directory>src/main/resources/WEB-INF</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<useDefaultManifestFile>false</useDefaultManifestFile>
<archive>
<manifestEntries>
<Mes-Queue-Length>30</Mes-Queue-Length>
<Mes-Core-Threads>5</Mes-Core-Threads>
<Mes-Max-Threads>5</Mes-Max-Threads>
</manifestEntries>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
<excludes>
<exclude>**/WEB-INF/*</exclude>
<exclude>**/WEB-INF</exclude>
</excludes>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifestEntries>
<Mes-Queue-Length>30</Mes-Queue-Length>
<Mes-Core-Threads>5</Mes-Core-Threads>
<Mes-Max-Threads>5</Mes-Max-Threads>
</manifestEntries>
</archive>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.services.target.folder}</outputDirectory>
<destFileName>it.maggioli.service.computeagent.srv.jar</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.services.target.folder}</outputDirectory>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.2.0.Final</version>
</path>
</annotationProcessorPaths>
<source>7</source>
<target>7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.api</groupId>
<artifactId>DEM-pub</artifactId>
<version>1.0.38.0000</version>
</parent>
<groupId>it.maggioli.api</groupId>
<artifactId>demografico-pub</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.suite.public.folder}</outputDirectory>
<destFileName>it.maggioli.api.demografico.pub.jar</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.suite.public.folder}</outputDirectory>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.2</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.2.0.Final</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
File added
File added
File added
File added
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.1</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>dom4j</artifactId>
<packaging>pom</packaging>
<version>3.2.0.0001</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>dom4j</artifactId>
<version>3.2.0.0001</version>
</dependency>
</dependencies>
</project>
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.0</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>edtftpj</artifactId>
<packaging>pom</packaging>
<version>1.5.2.0000</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>edtftpj</artifactId>
<version>1.5.2.0000</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
File added
File added
File added
File added
File added
File added
File added
File added
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.2</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>expiringmap</artifactId>
<packaging>pom</packaging>
<version>0.5.10.0000</version>
<dependencies>
<dependency><artifactId>expiringmap</artifactId><version>0.5.10.0000</version><groupId>it.saga.extern.jar</groupId></dependency></dependencies>
</project>
\ No newline at end of file
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.api</groupId>
<artifactId>IFR-pub</artifactId>
<version>0.0.12.0000</version>
</parent>
<groupId>it.maggioli.api</groupId>
<artifactId>infrastruttura-pub</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.suite.public.folder}</outputDirectory>
<destFileName>it.maggioli.api.infrastruttura.pub.jar</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.suite.public.folder}</outputDirectory>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.2.0.Final</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.1</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>itext</artifactId>
<packaging>pom</packaging>
<version>2.0.5.0000</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>itext</artifactId>
<version>2.0.5.0000</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.1</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>jasper-reports</artifactId>
<packaging>pom</packaging>
<version>1.3.3.0009</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jasperreports</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>barbecue</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>bsh</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>commons-digester</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>iReport</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.lib</groupId>
<artifactId>itext</artifactId>
<version>2.0.5.0000</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jcmdline</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jcommon</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jfreechart</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>looks</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>poi</artifactId>
<version>3.12.0.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>tinylaf</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.lib</groupId>
<artifactId>xalan</artifactId>
<version>2.7.2.0000</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>xml-services</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.lib</groupId>
<artifactId>jdt_eclipse</artifactId>
<version>3.9.50.0000</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jr-bsh-compiler</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>cincom-jr-xmla</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>eigenbase-properties</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>eigenbase-resgen</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>eigenbase-xom</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>flexdock</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>groovy</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>JasperBabylon</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jasperreports-extensions</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jpa</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>microba</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>mondrian</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>rex</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>spring</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>spring-hibernate</artifactId>
<version>1.3.3.0009</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>sqleonardo</artifactId>
<version>1.3.3.0009</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
File added
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.1</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>jboss-client7</artifactId>
<packaging>pom</packaging>
<version>7.2.0.0003</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jboss-client7</artifactId>
<version>7.2.0.0003</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.1</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>jdt_eclipse</artifactId>
<packaging>pom</packaging>
<version>3.9.50.0000</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>jdt-compiler</artifactId>
<version>3.9.50.0000</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
File added
File added
File added
File added
File added
File added
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.2</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>jxbrowser</artifactId>
<packaging>pom</packaging>
<version>6.24.2.0000</version>
<dependencies>
<dependency><artifactId>jxbrowser</artifactId><version>6.24.2.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>jxbrowser-win64</artifactId><version>6.24.2.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>jxbrowser-win32</artifactId><version>6.24.2.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>jxbrowser-mac</artifactId><version>6.24.2.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>jxbrowser-linux64</artifactId><version>6.24.2.0000</version><groupId>it.saga.extern.jar</groupId></dependency></dependencies>
</project>
\ No newline at end of file
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.2</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>openapi-libs</artifactId>
<packaging>pom</packaging>
<version>0.0.1.0000</version>
<dependencies>
<dependency><artifactId>commons-fileupload-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>commons-io-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>commons-lang3-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>guava-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>httpclient-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>httpcore-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>httpmime-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>jjwt-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>mapstruct-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>reflections-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>serializer-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>snakeyaml-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>xalan-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>xercesImpl-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>xmlParserAPIs-openapi-libs</artifactId><version>0.0.1.0000</version><groupId>it.saga.extern.jar</groupId></dependency></dependencies>
</project>
\ No newline at end of file
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.api</groupId>
<artifactId>API-pub</artifactId>
<version>0.0.1.0000</version>
</parent>
<groupId>it.maggioli.api</groupId>
<artifactId>openapi-pub</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce use of java8</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>1.8</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.public.target.folder}</outputDirectory>
<destFileName>it.maggioli.api.openapi.pub.jar</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.public.target.folder}</outputDirectory>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.2</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>suite-core</artifactId>
<packaging>pom</packaging>
<version>0.0.3.0000</version>
<dependencies>
<dependency><artifactId>commons-fileupload-web</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>httpclient-web</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>httpcore-web</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>httpmime-web</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>jjwt</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>mapstruct</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>serializer-web</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>xalan-web</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>xercesImpl-web</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency><dependency><artifactId>xmlParserAPIs-web</artifactId><version>0.0.3.0000</version><groupId>it.saga.extern.jar</groupId></dependency></dependencies>
</project>
\ No newline at end of file
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.api</groupId>
<artifactId>TRI-pub</artifactId>
<version>0.0.2.0000</version>
</parent>
<groupId>it.maggioli.api</groupId>
<artifactId>tributi-pub</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.suite.public.folder}</outputDirectory> <destFileName>it.maggioli.api.tributi.pub.jar</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.suite.public.folder}</outputDirectory>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.2.0.Final</version>
</path>
</annotationProcessorPaths>
</configuration>
</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.api</groupId>
<artifactId>TEC-pub</artifactId>
<version>0.0.14.0000</version>
</parent>
<groupId>it.maggioli.api</groupId>
<artifactId>ufficiotecnico-pub</artifactId>
<packaging>jar</packaging>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>${project.packaging}</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.suite.public.folder}</outputDirectory>
<destFileName>it.maggioli.api.ufficiotecnico.pub.jar</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.suite.public.folder}</outputDirectory>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.2.0.Final</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.1</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>xalan</artifactId>
<packaging>pom</packaging>
<version>2.7.2.0000</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>xalan</artifactId>
<version>2.7.2.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>serializer</artifactId>
<version>2.7.2.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.7.2.0000</version>
</dependency>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>xml-apis</artifactId>
<version>2.7.2.0000</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.1</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>xmlsec</artifactId>
<packaging>pom</packaging>
<version>1.5.8.0000</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>xmlsec</artifactId>
<version>1.5.8.0000</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
File added
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>it.maggioli.informatica</groupId>
<artifactId>extern-libs-base</artifactId>
<version>1.0.0</version>
</parent>
<groupId>it.saga.extern.lib</groupId>
<artifactId>yl</artifactId>
<packaging>pom</packaging>
<version>1.0.0.0000</version>
<dependencies>
<dependency>
<groupId>it.saga.extern.jar</groupId>
<artifactId>yl</artifactId>
<version>1.0.0.0000</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment