psl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.linqs</groupId> <artifactId>psl</artifactId> <version>2.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- - This file is part of the PSL software. - Copyright 2011-2015 University of Maryland - Copyright 2013-2023 The Regents of the University of California - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.linqs</groupId> <artifactId>psl</artifactId> <name>psl</name> <version>2.4.0</version> <packaging>pom</packaging> <description>The PSL software from the LINQS research group.</description> <url>https://psl.linqs.org</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license.</comments> </license> </licenses> <organization> <name>University of California, Santa Cruz</name> <url>https://www.ucsc.edu</url> </organization> <developers> <developer> <name>LINQS</name> <email>psl-users@googlegroups.com</email> <organization>LINQS</organization> <organizationUrl>https://www.linqs.org</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/linqs/psl.git</connection> <developerConnection>scm:git:ssh://github.com:linqs/psl.git</developerConnection> <url>http://github.com/linqs/psl/tree/main</url> </scm> <modules> <module>psl-cli</module> <module>psl-core</module> <module>psl-java</module> <module>psl-runtime</module> <module>psl-parser</module> <module>psl-python</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <rootdir>${project.basedir}</rootdir> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerArgs> <arg>-Xlint:deprecation</arg> <arg>-Xlint:all</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19</version> <configuration> <enableAssertions>true</enableAssertions> <trimStackTrace>false</trimStackTrace> <useSystemClassLoader>false</useSystemClassLoader> <systemProperties> <property> <name>java.util.logging.config.file</name> <value>${project.build.testOutputDirectory}/logging.properties</value> </property> </systemProperties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <configuration> <links> <link>https://docs.oracle.com/javase/8/docs/api/</link> </links> <doclint>none</doclint> <source>1.8</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.2.0</version> <dependencies> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>4.2.3</version> </dependency> </dependencies> <configuration> <excludeFilterFile>${rootdir}/.ci/spotbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>linqs-release</id> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>psl-releases</id> <name>PSL Releases</name> <url>file:///projects/linqs/www/maven/repositories/psl-releases/</url> <layout>default</layout> </repository> </distributionManagement> </profile> <profile> <id>test-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>central-release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <properties> <performRelease>true</performRelease> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</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.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> </project>