aws-lambda-bootstrap-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>me.julb</groupId>
<artifactId>aws-lambda-bootstrap-maven-plugin</artifactId>
<version>1.0.0</version>
</dependency><?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>me.julb</groupId> <artifactId>parent</artifactId> <version>[1,2)</version> </parent> <groupId>me.julb</groupId> <artifactId>aws-lambda-bootstrap-maven-plugin</artifactId> <version>1.0.0</version> <packaging>maven-plugin</packaging> <name>Julb.me :: AWS Lambda Bootstrap Maven Plugin</name> <description>This application enables to generate a bootstrap file for AWS Lambda custom runtime.</description> <url>https://julbme.github.io/aws-lambda-bootstrap-maven-plugin/</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/julbme/aws-lambda-bootstrap-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:julbme/aws-lambda-bootstrap-maven-plugin.git</developerConnection> <url>https://github.com/julbme/aws-lambda-bootstrap-maven-plugin</url> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/julbme/aws-lambda-bootstrap-maven-plugin/issues</url> </issueManagement> <distributionManagement> <site> <id>gh-pages</id> <name>GitHub Pages</name> <url>https://julbme.github.io/aws-lambda-bootstrap-maven-plugin/</url> </site> </distributionManagement> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <sonar.projectKey>julbme_aws-lambda-bootstrap-maven-plugin</sonar.projectKey> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <!-- compile --> <!-- provided --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <scope>provided</scope> </dependency> <!-- test --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <goals> <goal>report</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>org.jreleaser</groupId> <artifactId>jreleaser-maven-plugin</artifactId> <configuration> <configFile>jreleaser.yml</configFile> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <reportSets> <reportSet> <reports> <report>report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>