archetype-resources.pom.xml Maven / Gradle / Ivy
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <packaging>mule-application</packaging> <name>${artifactId}</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <app.runtime>${runtimeVersion}</app.runtime> <mule.maven.plugin.version>3.3.5</mule.maven.plugin.version> <maven.deploy.skip>true</maven.deploy.skip> <emt.version>${emtVersion}</emt.version> <anypoint.env>Sandbox</anypoint.env> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.9.0</version> </plugin> <plugin> <groupId>org.mule.tools.maven</groupId> <artifactId>mule-maven-plugin</artifactId> <version>${mule.maven.plugin.version}</version> <extensions>true</extensions> <configuration> <classifier>mule-application</classifier> </configuration> </plugin> <plugin> <groupId>com.aeontronix.enhanced-mule</groupId> <artifactId>enhanced-mule-tools-maven-plugin</artifactId> <version>${emt.version}</version> <extensions>true</extensions> <executions> <execution> <goals> <goal>process-descriptor</goal> <goal>deploy</goal> </goals> </execution> </executions> </plugin> #if (${gitCommitPlugin} == 'yes') <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>4.0.2</version> <executions> <execution> <id>get-the-git-infos</id> <goals> <goal>revision</goal> </goals> <phase>initialize</phase> </execution> </executions> <configuration> <generateGitPropertiesFile>true</generateGitPropertiesFile> <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename> <commitIdGenerationMode>full</commitIdGenerationMode> <format>properties</format> </configuration> </plugin> #end </plugins> </build> <dependencies> #if (${domain} == 'yes') <dependency> <groupId>${domainGroupId}</groupId> <artifactId>${domainArtifactId}</artifactId> <version>${domainVersion}</version> <classifier>mule-domain</classifier> <scope>provided</scope> </dependency> #end #if (${rest} == 'yes') #if (${domain} != 'yes') <dependency> <groupId>org.mule.connectors</groupId> <artifactId>mule-http-connector</artifactId> <version>1.5.17</version> <classifier>mule-plugin</classifier> </dependency> <dependency> <groupId>org.mule.connectors</groupId> <artifactId>mule-sockets-connector</artifactId> <version>1.1.6</version> <classifier>mule-plugin</classifier> </dependency> #end <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-apikit-module</artifactId> <version>1.3.12</version> <classifier>mule-plugin</classifier> </dependency> #if (${apiSpecInProject} == 'no') <dependency> <groupId>${orgId}</groupId> <artifactId>${artifactId}-spec</artifactId> <version>1.0.0</version> <classifier>${apiSpecType}</classifier> <type>zip</type> </dependency> #end #end #if (${jsonlogging} == 'yes') <dependency> <groupId>com.aeontronix.log4j2</groupId> <artifactId>log4j2-enhanced-json-layout</artifactId> <version>${jsonloggingversion}</version> </dependency> #end #if (${emProperties} == 'yes') <dependency> <groupId>com.aeontronix.enhanced-mule</groupId> <artifactId>enhanced-mule-properties-provider</artifactId> <version>${emPropertiesVersion}</version> <classifier>mule-plugin</classifier> </dependency> #end </dependencies> <repositories> <repository> <id>anypoint-exchange-v2</id> <name>Anypoint Exchange</name> <url>https://maven.anypoint.mulesoft.com/api/v2/maven</url> <layout>default</layout> </repository> <repository> <id>mulesoft-releases</id> <name>MuleSoft Releases Repository</name> <url>https://repository.mulesoft.org/releases/</url> <layout>default</layout> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>mulesoft-releases</id> <name>mulesoft release repository</name> <layout>default</layout> <url>https://repository.mulesoft.org/releases/</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy