noa-libre
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.eforest</groupId> <artifactId>noa-libre</artifactId> <version>4.0.1</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.eforest</groupId> <artifactId>noa-libre</artifactId> <version>4.0.1</version> <packaging>jar</packaging> <name>noa-libre</name> <description>UNO API of LibreOffice easy and understandable - Nice Office Access</description> <url>https://github.com/eforest/noa-libre</url> <licenses> <license> <name>GNU Lesser General Public License v2.1</name> <url>https://opensource.org/licenses/LGPL-2.1</url> </license> </licenses> <developers> <developer> <name>Ewald Volkert</name> </developer> </developers> <scm> <connection>scm:git:git://github.com/eforest/noa-libre.git</connection> <developerConnection>scm:git:ssh://github.com:eforest/noa-libre.git</developerConnection> <url>http://github.com/eforest/noa-libre/tree/master</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.libreoffice>7.3.5</version.libreoffice> <do.skipSource>true</do.skipSource> <do.skipJavadoc>true</do.skipJavadoc> <do.skipSign>true</do.skipSign> <!-- you need lot's of local infrastructure to run these tests, so by default we're skipping execution --> <skipTests>true</skipTests> </properties> <dependencies> <!-- replacement for juh,jurt,ridl,unoil --> <dependency> <groupId>org.libreoffice</groupId> <artifactId>libreoffice</artifactId> <version>${version.libreoffice}</version> </dependency> <dependency> <groupId>org.libreoffice</groupId> <artifactId>unoloader</artifactId> <version>${version.libreoffice}</version> </dependency> <dependency> <groupId>org.libreoffice</groupId> <artifactId>officebean</artifactId> <version>${version.libreoffice}</version> </dependency> <dependency> <groupId>org.openoffice</groupId> <artifactId>bootstrap-connector</artifactId> <version>0.1.1</version> <exclusions> <exclusion> <groupId>org.openoffice</groupId> <artifactId>ridl</artifactId> </exclusion> <exclusion> <groupId>org.openoffice</groupId> <artifactId>juh</artifactId> </exclusion> <exclusion> <groupId>org.openoffice</groupId> <artifactId>unoil</artifactId> </exclusion> <exclusion> <groupId>org.openoffice</groupId> <artifactId>jurt</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <filtering>true</filtering> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <source>11</source> <target>11</target> <release>11</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M6</version> </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-no-fork</goal> </goals> <configuration> <skipSource>${do.skipSource}</skipSource> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <tags> <tag> <name>date</name> <placement>a</placement> <head>Last modified:</head> </tag> <tag> <name>created</name> <placement>a</placement> <head>Creation date:</head> </tag> <tag> <name>member</name> <placement>a</placement> <head>Members:</head> </tag> </tags> <skip>${do.skipJavadoc}</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.simplify4u.plugins</groupId> <artifactId>sign-maven-plugin</artifactId> <version>1.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <skip>${do.skipSign}</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.12</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>doFullBuild</id> <properties> <do.skipSource>false</do.skipSource> <do.skipJavadoc>false</do.skipJavadoc> <do.skipSign>false</do.skipSign> </properties> </profile> </profiles> </project>