jaul
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sshtools</groupId> <artifactId>jaul</artifactId> <version>0.9.11</version> </dependency>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.sshtools</groupId> <artifactId>jaul</artifactId> <version>0.9.11</version> <name>Jadaptive Application Update Library</name> <description>A library used across several JAdpative applications, it provides some common features based on Install4J Runtime. </description> <properties> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <build.projectProperties>${basedir}/jadaptive.build.properties</build.projectProperties> <build.userProperties>${user.home}/.jadaptive.build.properties</build.userProperties> <native.image.annotations.version>0.9.3-SNAPSHOT</native.image.annotations.version> </properties> <developers> <developer> <id>brett</id> <email>brett@logonbox.com</email> </developer> </developers> <organization> <name>JAdaptive</name> <url>https://jadaptive.com</url> </organization> <inceptionYear>2023</inceptionYear> <url>https://github.com/sshtools/jaul</url> <licenses> <license> <name>Apache License Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <snapshotRepository> <id>ossrh-sshtools</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh-sshtools</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <url>https://github.com/sshtools/jaul</url> <connection>scm:git:https://github.com/sshtools/jaul.git</connection> </scm> <dependencies> <dependency> <groupId>com.install4j</groupId> <artifactId>install4j-runtime</artifactId> <version>10.0.7</version> <optional>true</optional> <!-- MUST be provided, the runtime is added by I4J itself --> <scope>provided</scope> </dependency> <dependency> <groupId>uk.co.bithatch</groupId> <artifactId>native-image-annotations</artifactId> <version>${native.image.annotations.version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>uk.co.bithatch</groupId> <artifactId>native-image-annotations</artifactId> <version>${native.image.annotations.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <executions> <execution> <phase>initialize</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <quiet>true</quiet> <files> <file>${build.projectProperties}</file> <file>${build.userProperties}</file> </files> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <index>true</index> <manifest> <addClasspath>true</addClasspath> </manifest> <manifestEntries> <Install-Action>com.sshtools.jaul.InstallJaulAppAction,com.sshtools.jaul.GetJaulAppAction,com.sshtools.jaul.GetJaulAppInstallDirAction,com.sshtools.jaul.RegisterJaulAppAction,com.sshtools.jaul.DeregisterJaulAppAction</Install-Action> </manifestEntries> </archive> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-ant-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <encoding>UTF-8</encoding> <detectJavaApiLink>false</detectJavaApiLink> <source>11</source> <doclint>none</doclint> <sourcepath>src/main/java</sourcepath> <includeDependencySources>false</includeDependencySources> <dependencySourceIncludes> <dependencySourceInclude>com.sshtools:*</dependencySourceInclude> </dependencySourceIncludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.3</version> <configuration> <header>src/templates/APACHE-2.txt</header> <properties> <owner>JAdaptive Limited</owner> <email>support@jadaptive.com</email> </properties> <excludes> <exclude>**/README</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>check</goal> <goal>format</goal> <goal>remove</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh-sshtools</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <id>oss-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <snapshots /> <releases> <enabled>false</enabled> </releases> </repository> <repository> <id>ej-technologies</id> <url>https://maven.ej-technologies.com/repository</url> </repository> </repositories> </project>