invokebinder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.headius</groupId> <artifactId>invokebinder</artifactId> <version>1.14</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.headius</groupId> <artifactId>invokebinder</artifactId> <packaging>bundle</packaging> <version>1.14</version> <name>invokebinder</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/headius/invokebinder.git</connection> <developerConnection>scm:git:git@github.com:headius/invokebinder.git</developerConnection> <url>https://github.com/headius/invokebinder</url> </scm> <developers> <developer> <id>headius</id> <name>Charles Nutter</name> <email>headius@headius.com</email> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-SymbolicName>com.headius.invokebinder</Bundle-SymbolicName> <Export-Package>com.headius.invokebinder.*</Export-Package> </instructions> </configuration> <!-- https://issues.apache.org/jira/browse/FELIX-5698 --> <dependencies> <dependency> <groupId>biz.aQute.bnd</groupId> <artifactId>biz.aQute.bndlib</artifactId> <version>5.2.0</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <executions> <execution> <id>default-compile</id> <configuration> <includes> <include>module-info.java</include> </includes> <release>9</release> </configuration> </execution> <execution> <id>default-testCompile</id> <configuration> <release>9</release> </configuration> </execution> <execution> <id>base-compile</id> <goals> <goal>compile</goal> </goals> <configuration> <excludes> <exclude>module-info.java</exclude> </excludes> <source>8</source> <target>8</target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.2</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <source>8</source> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> </project>