Browse Source

adapted project-files such that project can be used with intellij IDEA IDE

armin 7 years ago
parent
commit
17bbd9161f
6 changed files with 25 additions and 8 deletions
  1. 1 0
      .gitignore
  2. 5 0
      main/commons/pom.xml
  3. 4 0
      main/keychain/pom.xml
  4. 4 0
      main/launcher/pom.xml
  5. 7 8
      main/pom.xml
  6. 4 0
      main/ui/pom.xml

+ 1 - 0
.gitignore

@@ -17,3 +17,4 @@ test-output/
 out/
 .idea_modules/
 *.iws
+*.iml

+ 5 - 0
main/commons/pom.xml

@@ -34,6 +34,11 @@
 			<groupId>com.google.dagger</groupId>
 			<artifactId>dagger</artifactId>
 		</dependency>
+		
+		<dependency>
+			<groupId>com.google.dagger</groupId>
+			<artifactId>dagger-compiler</artifactId>
+		</dependency>
 
 		<!-- Logging -->
 		<dependency>

+ 4 - 0
main/keychain/pom.xml

@@ -34,6 +34,10 @@
 			<groupId>com.google.dagger</groupId>
 			<artifactId>dagger</artifactId>
 		</dependency>
+		<dependency>
+			<groupId>com.google.dagger</groupId>
+			<artifactId>dagger-compiler</artifactId>
+		</dependency>
 		
 		<!-- Logging -->
 		<dependency>

+ 4 - 0
main/launcher/pom.xml

@@ -34,6 +34,10 @@
 			<groupId>com.google.dagger</groupId>
 			<artifactId>dagger</artifactId>
 		</dependency>
+		<dependency>
+			<groupId>com.google.dagger</groupId>
+			<artifactId>dagger-compiler</artifactId>
+		</dependency>
 
 		<!-- Logging -->
 		<dependency>

+ 7 - 8
main/pom.xml

@@ -164,6 +164,12 @@
 				<artifactId>dagger</artifactId>
 				<version>${dagger.version}</version>
 			</dependency>
+			<dependency>
+				<groupId>com.google.dagger</groupId>
+				<artifactId>dagger-compiler</artifactId>
+				<version>${dagger.version}</version>
+				<optional>true</optional>
+			</dependency>
 			<dependency>
 				<groupId>com.google.code.gson</groupId>
 				<artifactId>gson</artifactId>
@@ -302,17 +308,10 @@
 		<plugins>
 			<plugin>
 				<artifactId>maven-compiler-plugin</artifactId>
-				<version>3.6.1</version>
+				<version>3.7.0</version>
 				<configuration>
 					<source>1.8</source>
 					<target>1.8</target>
-					<annotationProcessorPaths>
-						<path>
-							<groupId>com.google.dagger</groupId>
-							<artifactId>dagger-compiler</artifactId>
-							<version>${dagger.version}</version>
-						</path>
-					</annotationProcessorPaths>
 				</configuration>
 			</plugin>
 		</plugins>

+ 4 - 0
main/ui/pom.xml

@@ -72,6 +72,10 @@
 			<groupId>com.google.dagger</groupId>
 			<artifactId>dagger</artifactId>
 		</dependency>
+		<dependency>
+			<groupId>com.google.dagger</groupId>
+			<artifactId>dagger-compiler</artifactId>
+		</dependency>
 
 		<!-- Zxcvbn -->
 		<dependency>