hello-world
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.floydpink.jsii.helloWorld</groupId>
<artifactId>hello-world</artifactId>
<version>1.0.7</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">
<!-- Generated by jsii-pacmak@1.1.0 (build df55f5e) on 2020-04-06T15:28:38.743Z -->
<!-- @jsii-pacmak:meta@ {"fingerprint":"gTD5jqs4ml1QeIIfwH8yqkv0ZHltLe+LkV4aLqWlqys="} -->
<modelVersion>4.0.0</modelVersion>
<name>${project.groupId}:${project.artifactId}</name>
<description>Code samples that accompany the AWS blog post on jsii</description>
<url>https://github.com/floydpink/jsii-code-samples#readme</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
<comments>An OSI-approved license</comments>
</license>
</licenses>
<developers>
<developer>
<name>Hari Pachuveetil <pachuvee@amazon.com></name>
<roles>
<role>author</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/floydpink/jsii-code-samples.git</connection>
<url>https://github.com/floydpink/jsii-code-samples.git</url>
</scm>
<groupId>io.github.floydpink.jsii.helloWorld</groupId>
<artifactId>hello-world</artifactId>
<version>1.0.7</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>software.amazon.jsii</groupId>
<artifactId>jsii-runtime</artifactId>
<version>[1.1.0,2.0.0)</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>[16.0.3,20.0.0)</version>
</dependency>
<dependency>
<!-- Provides @javax.annotation.Generated for JDKs >= 9 -->
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>[1.3.2,1.4.0)</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<index>true</index>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
<show>protected</show>
<sourceFileExcludes>
<exclude>**/$Module.java</exclude>
</sourceFileExcludes>
<additionalJOption>-J-XX:+TieredCompilation</additionalJOption>
<additionalJOption>-J-XX:TieredStopAtLevel=1</additionalJOption>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.6</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
</plugins>
</build>
</project>