Skip to content

Commit

Permalink
#7 renamed maven coordinates and java packages to org.lastnpe
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainlaurent authored and vorburger committed Dec 14, 2016
1 parent 8f89431 commit 0665c1d
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
Expand Up @@ -13,7 +13,7 @@
</pluginExecutionFilter>
<action>
<configurator>
<id>ch.sla.eeaplugin.core.configurator.ClasspathConfigurator</id>
<id>org.lastnpe.m2e.core.configurator.ClasspathConfigurator</id>
<runOnIncremental>false</runOnIncremental>
<runOnConfiguration>true</runOnConfiguration>
</configurator>
Expand Down
6 changes: 3 additions & 3 deletions eclipse-external-annotations-m2e-plugin.core/plugin.xml
Expand Up @@ -7,16 +7,16 @@
<extension
point="org.eclipse.m2e.core.projectConfigurators">
<configurator
class="ch.sla.eeaplugin.core.configurator.ClasspathConfigurator"
id="ch.sla.eeaplugin.core.configurator.ClasspathConfigurator"
class="org.lastnpe.m2e.core.configurator.ClasspathConfigurator"
id="org.lastnpe.m2e.core.configurator.ClasspathConfigurator"
runsAfter="org.eclipse.m2e.jdt.javaConfigurator"
>
</configurator>
</extension>
<extension
point="org.eclipse.m2e.core.mavenProjectChangedListeners">
<listener
class="ch.sla.eeaplugin.core.configurator.ClasspathConfigurator">
class="org.lastnpe.m2e.core.configurator.ClasspathConfigurator">
</listener>
</extension>
</plugin>
2 changes: 1 addition & 1 deletion eclipse-external-annotations-m2e-plugin.core/pom.xml
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.github.sylvainlaurent.m2e</groupId>
<groupId>org.lastnpe.m2e</groupId>
<artifactId>eclipse-external-annotations-m2e-plugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
Expand Down
@@ -1,4 +1,4 @@
package ch.sla.eeaplugin.core.configurator;
package org.lastnpe.m2e.core.configurator;

import java.io.File;
import java.io.FileInputStream;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*/
package ch.sla.eeaplugin.core.configurator;
package org.lastnpe.m2e.core.configurator;

import java.util.Objects;
import java.util.Optional;
Expand Down
Expand Up @@ -5,7 +5,7 @@
version="1.0.0.qualifier"
plugin="eclipse-external-annotations-m2e-plugin.core">

<description url="https://github.com/vorburger/eclipse-external-annotations-m2e-plugin">
<description url="https://github.com/lastnpe/eclipse-external-annotations-m2e-plugin">
Integration Eclipse null analysis with Maven:

1. Allows to configure Java Compiler Project Properties from maven-compiler-plugin; read either from a dependency of maven-compiler-plugin containing a org.eclipse.jdt.core.prefs file, or from configuration/compilerArguments/properties.
Expand Down
4 changes: 2 additions & 2 deletions eclipse-external-annotations-m2e-plugin.feature/pom.xml
Expand Up @@ -4,12 +4,12 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.github.sylvainlaurent.m2e</groupId>
<groupId>org.lastnpe.m2e</groupId>
<artifactId>eclipse-external-annotations-m2e-plugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<groupId>com.github.sylvainlaurent.m2e.feature</groupId>
<groupId>org.lastnpe.m2e.feature</groupId>
<artifactId>eclipse_external_annotations_m2e_plugin.feature</artifactId>
<packaging>eclipse-feature</packaging>

Expand Down
2 changes: 1 addition & 1 deletion eclipse-external-annotations-m2e-plugin.site/pom.xml
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.github.sylvainlaurent.m2e</groupId>
<groupId>org.lastnpe.m2e</groupId>
<artifactId>eclipse-external-annotations-m2e-plugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -2,7 +2,7 @@
<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>com.github.sylvainlaurent.m2e</groupId>
<groupId>org.lastnpe.m2e</groupId>
<artifactId>eclipse-external-annotations-m2e-plugin</artifactId>

<version>1.0.0-SNAPSHOT</version>
Expand Down

0 comments on commit 0665c1d

Please sign in to comment.