dependencies-ui
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.okapi</groupId> <artifactId>dependencies-ui</artifactId> <version>1.46.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> <parent> <groupId>net.sf.okapi</groupId> <artifactId>build-okapi-ui</artifactId> <version>1.46.0</version> </parent> <artifactId>dependencies-ui</artifactId> <name>Okapi Dependencies UI</name> <profiles> <profile> <id>FreeBSD_x86_64_swt</id> <activation> <os> <name>freebsd</name> <arch>amd64</arch> </os> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <id>install-swt-lib</id> <goals> <goal>install-file</goal> </goals> <phase>validate</phase> <configuration> <groupId>org.eclipse.platform</groupId> <artifactId>org.eclipse.swt.gtk.freebsd.x86_64</artifactId> <version>${org.eclipse.swt.gtk.freebsd.version}</version> <packaging>jar</packaging> <file>org/eclipse/swt/gtk/freebsd/x86_64/org.eclipse.swt.gtk.freebsd.x86_64-${org.eclipse.swt.gtk.freebsd.version}.jar</file> <pomFile>org/eclipse/swt/gtk/freebsd/x86_64/org.eclipse.swt.gtk.freebsd.x86_64-${org.eclipse.swt.gtk.freebsd.version}.pom</pomFile> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>