Skip to content

Commit dd3e998

Browse files
committed
Fix maveneclipse sample project
1 parent a851f79 commit dd3e998

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

examples/maveneclipse/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<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">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>com.googlecode.androidannotations</groupId>
65
<artifactId>maveneclipse</artifactId>
@@ -12,7 +11,7 @@
1211
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1312
<android.version>4.1.1.4</android.version>
1413
<android.platform>16</android.platform>
15-
<androidannotations.version>2.7.1</androidannotations.version>
14+
<androidannotations.version>3.0-SNAPSHOT</androidannotations.version>
1615
<java.version>1.6</java.version>
1716
</properties>
1817

@@ -24,13 +23,13 @@
2423
<scope>provided</scope>
2524
</dependency>
2625
<dependency>
27-
<groupId>com.googlecode.androidannotations</groupId>
26+
<groupId>org.androidannotations</groupId>
2827
<artifactId>androidannotations</artifactId>
2928
<version>${androidannotations.version}</version>
3029
<scope>provided</scope>
3130
</dependency>
3231
<dependency>
33-
<groupId>com.googlecode.androidannotations</groupId>
32+
<groupId>org.androidannotations</groupId>
3433
<artifactId>androidannotations-api</artifactId>
3534
<version>${androidannotations.version}</version>
3635
</dependency>

examples/maveneclipse/src/main/java/com/googlecode/androidannotations/maveneclipse/HelloAndroidActivity.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
import java.util.Date;
44

5+
import org.androidannotations.annotations.AfterViews;
6+
import org.androidannotations.annotations.EActivity;
7+
import org.androidannotations.annotations.ViewById;
8+
import org.androidannotations.annotations.res.StringRes;
9+
510
import android.app.Activity;
611
import android.widget.TextView;
712

8-
import com.googlecode.androidannotations.annotations.AfterViews;
9-
import com.googlecode.androidannotations.annotations.EActivity;
10-
import com.googlecode.androidannotations.annotations.ViewById;
11-
import com.googlecode.androidannotations.annotations.res.StringRes;
12-
1313
@EActivity(R.layout.main)
1414
public class HelloAndroidActivity extends Activity {
1515

0 commit comments

Comments
 (0)