bacting
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.egonw.bacting</groupId> <artifactId>bacting</artifactId> <version>1.0.3</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.egonw.bacting</groupId> <artifactId>bacting</artifactId> <name>Bacting</name> <description>Bacting := acting as the Bioclipse TNG. Bioclipse version that can be used from the command line, e.g. with Groovy.</description> <url>http://www.github.com/egonw/bacting</url> <version>1.0.3</version> <packaging>pom</packaging> <licenses> <license> <name>Eclipse Public License v1.0 + GPL Exception</name> <url>https://github.com/egonw/bacting/blob/main/LICENSE.md</url> </license> </licenses> <developers> <developer> <name>Egon Willighagen</name> <email>egon.willighagen@maastrichtuniversity.nl</email> <organization>Maastricht University</organization> <organizationUrl>http://www.bigcat.unimaas.nl/</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/egonw/bacting.git</connection> <developerConnection>scm:git:ssh://git@github.com/egonw/bacting.git</developerConnection> <url>http://github.com/egonw/bacting/tree/main</url> <tag>HEAD</tag> </scm> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <maven.compiler.version>3.13.0</maven.compiler.version> <maven.shade.version>3.6.0</maven.shade.version> <junit5.excludeGroups>pubchem,chemspider</junit5.excludeGroups> <junit.version>5.11.0</junit.version> <bioclipse.version>2.8.1.2</bioclipse.version> <cdk.version>2.9</cdk.version> <xom.version>1.3.9</xom.version> <biojava.version>1.9.7</biojava.version> <jena.version>4.10.0</jena.version> <bridgedb.version>3.1.3</bridgedb.version> <derby.version>10.15.2.0</derby.version> <httpclient.version>4.5.14</httpclient.version> <jqudt.version>1.5.0</jqudt.version> <commonsio.version>2.17.0</commonsio.version> <commonslogging.version>1.3.4</commonslogging.version> <xerces.version>2.12.2</xerces.version> <json.version>20240303</json.version> <slf4j.version>2.0.13</slf4j.version> <log4j.version>2.23.1</log4j.version> <cmlxom.version>4.9</cmlxom.version> <guava.version>33.3.0-jre</guava.version> <opsin.version>2.8.0</opsin.version> </properties> <modules> <module>bacting-core</module> <module>managers-core</module> <module>managers-semweb</module> <module>managers-bioinfo</module> <module>managers-cheminfo</module> <module>managers-excel</module> <module>managers-search</module> <module>bundle</module> </modules> <distributionManagement> <snapshotRepository> <id>sso</id> <url>https://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> <repositories> <repository> <id>sonatypeSnapshots</id> <name>Sonatype Snapshots</name> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6.3</version> </requireMavenVersion> <requireJavaVersion> <version>17</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.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-javadoc-plugin</artifactId> <version>3.7.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> <execution> <id>aggregate</id> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> <configuration> </configuration> </execution> </executions> <configuration> <source>17</source> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.3.0</version> <configuration> <groups>${junit5.groups}</groups> <excludedGroups>${junit5.excludeGroups}</excludedGroups> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>start-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>generate-report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>