ljv
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.atp-fivt</groupId> <artifactId>ljv</artifactId> <version>1.04</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>org.atp-fivt</groupId> <artifactId>ljv</artifactId> <packaging>jar</packaging> <name>ljv</name> <version>1.04</version> <description>Lightweight Java Visualizer</description> <url>https://github.com/atp-mipt/ljv</url> <organization> <name>MIPT/FIVT/ATP</name> <url>https://mipt.ru/education/chairs/programmingtechnolgy/</url> </organization> <scm> <url>https://github.com/atp-mipt/ljv.git</url> <connection>scm:git:git://github.com/atp-mipt/ljv.git</connection> <developerConnection>scm:git:git://github.com/atp-mipt/ljv.git</developerConnection> </scm> <developers> <developer> <name>John Hamer</name> <email>J.Hamer@cs.auckland.ac.nz</email> </developer> <developer> <name>Ivan Ponomarev</name> <email>ponomarev@phystech.edu</email> </developer> <developer> <name>Nuras Nogayev</name> <email>nogayev.nuras@gmail.com</email> </developer> <developer> <name>Ilya Selivanov</name> <email>ilyaspacemail@gmail.com</email> </developer> </developers> <contributors> <contributor> <name>Oleg Ivchenko</name> <email>oleg.ivchenko@phystech.edu</email> </contributor> </contributors> <licenses> <license> <name>GNU General Public License (GPL), Version 3</name> <url>https://www.gnu.org/licenses/gpl-3.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <java.version>11</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.source.plugin.version>3.2.1</maven.source.plugin.version> <maven.javadoc.plugin.version>3.3.2</maven.javadoc.plugin.version> <junit.version>5.8.2</junit.version> <maven.surefire.plugin.version>2.22.2</maven.surefire.plugin.version> </properties> <dependencies> <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <version>0.16</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.approvaltests</groupId> <artifactId>approvaltests</artifactId> <version>13.3.0</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <configuration> <attach>true</attach> </configuration> <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>${maven.javadoc.plugin.version}</version> <configuration> <show>public</show> <attach>true</attach> <maxmemory>1024m</maxmemory> <excludePackageNames>org.apache.poi.*</excludePackageNames> </configuration> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <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> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>