pnote
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.thevpc.pnote</groupId> <artifactId>pnote</artifactId> <version>0.8.3.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> <groupId>net.thevpc.pnote</groupId> <artifactId>pnote</artifactId> <version>0.8.3.0</version> <packaging>jar</packaging> <name>Pangaea Note</name> <url>https://github.com/thevpc/pangaea-note</url> <description>Pangaea Note Taking Application</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <github.global.server>github</github.global.server> <nuts.application>true</nuts.application> <nuts.gui>true</nuts.gui> <nuts.genericName>Note Taking Application</nuts.genericName> <nuts.categories> /Utilities </nuts.categories> <nuts.icons> classpath://net/thevpc/pnote/icon.png classpath://net/thevpc/pnote/icon.ico </nuts.icons> </properties> <scm> <connection>scm:git:git://github.com/thevpc/pangaea-note.git</connection> <developerConnection>scm:git:ssh://github.com:thevpc/pangaea-note.git</developerConnection> <url>https://github.com/thevpc/pangaea-note/tree/master</url> </scm> <organization> <name>vpc open source initiative</name> <url>https://thevpc.net</url> </organization> <developers> <developer> <id>vpc</id> <name>Taha Ben Salah</name> <email>taha.bensalah@gmail.com</email> <url>https://tahabensalah.net</url> <organization>thevpc open source initiative</organization> <organizationUrl>https://thevpc.net</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Africa/Tunis</timezone> <properties> <picUrl>https://gravatar.com/avatar/977025550163b4a91397007f6ea9ee17</picUrl> </properties> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <dependencies> <!-- <dependency>--> <!-- <groupId>temp</groupId>--> <!-- <artifactId>swing-explorer</artifactId>--> <!-- <version>1.0-SNAPSHOT</version>--> <!-- </dependency>--> <dependency> <groupId>net.sourceforge.tess4j</groupId> <artifactId>tess4j</artifactId> <version>4.6.0</version> <exclusions> <exclusion> <groupId>bouncycastle</groupId> <artifactId>bctsp-jdk14</artifactId> </exclusion> </exclusions> </dependency> <!-- <dependency>--> <!-- <groupId>io.humble</groupId>--> <!-- <artifactId>humble-video-all</artifactId>--> <!-- <version>0.3.0</version>--> <!-- </dependency>--> <dependency> <groupId>net.thevpc.nuts</groupId> <artifactId>nuts</artifactId> <version>0.8.3</version> </dependency> <!-- <dependency>--> <!-- <groupId>net.thevpc.diagram4j</groupId>--> <!-- <artifactId>diagram4j</artifactId>--> <!-- <version>0.1.1</version>--> <!-- </dependency>--> <dependency> <groupId>net.thevpc.more.iconsets</groupId> <artifactId>iconset-feather</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>net.thevpc.more.iconsets</groupId> <artifactId>iconset-svgrepo-color</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>net.thevpc.echo</groupId> <artifactId>echo</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>net.thevpc.echo</groupId> <artifactId>echo-swing</artifactId> <version>1.1.0</version> <scope>runtime</scope> </dependency> <!-- <dependency>--> <!-- <groupId>net.thevpc.echo</groupId>--> <!-- <artifactId>echo-jfx</artifactId>--> <!-- <version>1.1.0</version>--> <!-- </dependency>--> <dependency> <groupId>org.jodconverter</groupId> <artifactId>jodconverter-local</artifactId> <version>4.4.2</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.8.2</version> <scope>test</scope> </dependency> <!--- PDF --> <dependency> <groupId>org.icepdf.os</groupId> <artifactId>icepdf-viewer</artifactId> <version>6.2.2</version> <exclusions> <exclusion> <groupId>javax.media</groupId> <artifactId>jai_core</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifest> <!-- Jar file entry point --> <mainClass>net.thevpc.pnote.PangaeaNoteMain</mainClass> </manifest> <manifestEntries> <Automatic-Module-Name>net.thevpc.pnote</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>testCompile</id> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> <configuration> <showDeprecation>true</showDeprecation> <debug>true</debug> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>deploy</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.0.2</version> <executions> <execution> <phase>process-sources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${targetdirectory}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.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.2.0</version> <configuration> <tags> <tag> <name>app.category</name> <placement>a</placement> <head>Category:</head> </tag> </tags> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>net.thevpc.pnote.pnote</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.3</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>