editor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openbase.bco.registry</groupId>
<artifactId>editor</artifactId>
<version>1.6.4</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openbase.bco.registry</groupId>
<artifactId>editor</artifactId>
<version>1.6.4</version>
<name>BCO Registry Editor</name>
<inceptionYear>2014</inceptionYear>
<description>This editor allows the modification and introspection of all registries holded by the bco.registry project.</description>
<url>https://github.com/openbase/bco.registry.editor/wiki</url>
<organization>
<name>openbase.org</name>
<url>https://github.com/openbase</url>
</organization>
<developers>
<developer>
<id>pLeminoq</id>
<name>Tamino Huxohl</name>
<email>taminoh@ymail.com</email>
<url>https://github.com/pLeminoq</url>
<organization>openbase.org</organization>
<organizationUrl>https://github.com/openbase</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>DivineThreepwood</id>
<name>Marian Pohling</name>
<email>divine@openbase.org</email>
<url>https://github.com/DivineThreepwood</url>
<organization>openbase.org</organization>
<organizationUrl>https://github.com/openbase</organizationUrl>
<roles>
<role>developer</role>
<role>tester</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<licenses>
<license>
<name>GPLv3</name>
<url>http://www.gnu.org/licenses/gpl.html</url>
</license>
</licenses>
<packaging>jar</packaging>
<scm>
<connection>scm:git:https://github.com/openbase/bco.registry.editor.git</connection>
<developerConnection>scm:git:https://github.com/openbase/bco.registry.editor.git</developerConnection>
<url>https://github.com/openbase/bco.registry.editor.git</url>
<tag>v1.6.4</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${source.java.version}</source>
<target>${target.java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.10</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
<configuration>
<programs>
<program>
<mainClass>org.openbase.bco.registry.editor.RegistryEditor</mainClass>
<id>registry-editor</id>
<platforms>
<platform>unix</platform>
</platforms>
</program>
<program>
<mainClass>org.openbase.bco.registry.editor.RegistryEditor</mainClass>
<id>bco-registry-editor</id>
<platforms>
<platform>unix</platform>
</platforms>
</program>
</programs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<archive>
<manifest>
<mainClass>org.openbase.bco.registry.editor.RegistryEditor</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>com.jolira</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<version>1.4.4</version>
<executions>
<execution>
<configuration>
<!--<onejarVersion>0.97</onejarVersion>-->
<attachToBuild>false</attachToBuild>
<classifier>onejar</classifier>
</configuration>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.10</version>
<configuration>
<verbose>false</verbose>
<licenseName>gpl_v3</licenseName>
<failOnMissingHeader>true</failOnMissingHeader>
<failOnNotUptodateHeader>true</failOnNotUptodateHeader>
<canUpdateCopyright>true</canUpdateCopyright>
<canUpdateDescription>true</canUpdateDescription>
<canUpdateLicense>true</canUpdateLicense>
<roots>
<root>src/main/java</root>
<root>src/test</root>
</roots>
</configuration>
<executions>
<execution>
<id>first</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
</execution>
<execution>
<id>download-licenses</id>
<goals>
<goal>download-licenses</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<executable>java</executable>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>true</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.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>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>sonatype</id>
<build>
<plugins>
<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>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<target.java.version>1.8</target.java.version>
<source.java.version>1.8</source.java.version>
<dependency.jul.version>[1.6,1.7-alpha)</dependency.jul.version>
<dependency.bco.registry.version>[1.6,1.7-alpha)</dependency.bco.registry.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openbase</groupId>
<artifactId>jul.extension.rsb.com</artifactId>
<version>${dependency.jul.version}</version>
</dependency>
<dependency>
<groupId>org.openbase</groupId>
<artifactId>jul.storage</artifactId>
<version>${dependency.jul.version}</version>
</dependency>
<dependency>
<groupId>org.openbase</groupId>
<artifactId>jul.extension.rsb.scope</artifactId>
<version>${dependency.jul.version}</version>
</dependency>
<dependency>
<groupId>org.openbase</groupId>
<artifactId>jul.extension.rst.processing</artifactId>
<version>${dependency.jul.version}</version>
</dependency>
<dependency>
<groupId>org.openbase</groupId>
<artifactId>jul.processing</artifactId>
<version>${dependency.jul.version}</version>
</dependency>
<dependency>
<groupId>org.openbase</groupId>
<artifactId>jul.visual.swing</artifactId>
<version>${dependency.jul.version}</version>
</dependency>
<dependency>
<groupId>org.openbase.bco</groupId>
<artifactId>registry.remote</artifactId>
<version>${dependency.bco.registry.version}</version>
<type>jar</type>
</dependency>
</dependencies>
<pluginRepositories>
<pluginRepository>
<id>onejar-maven-plugin.googlecode.com</id>
<url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>