lenois
07/04/2018, 4:13 AM<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>kapt</id>
<goals>
<goal>kapt</goal>
</goals>
<configuration>
<sourceDirs>
<sourceDir>${project.basedir}/src/main</sourceDir>
</sourceDirs>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>com.google.dagger</groupId>
<artifactId>dagger-compiler</artifactId>
<version>${dagger.version}</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</execution>
<execution>
<id>compile</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
<compilerPlugins>
<!-- Or "jpa" for JPA support -->
<plugin>no-arg</plugin>
</compilerPlugins>
</configuration>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-noarg</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</plugin>
these are the errors, there are hundred of them
[Xlint:cantFindType]
[URLClassLoader@4914000c] error can't determine annotations of missing type org.springframework.cache.annotation.Cacheable
when weaving type dagger.internal.codegen.BindingGraphValidator
when weaving classes
when weaving
[Xlint:cantFindType]
[URLClassLoader@4914000c] error can't determine annotations of missing type org.springframework.cache.annotation.CacheEvict
when weaving type dagger.spi.DiagnosticReporter
when weaving classes
when weaving
I tried scouring the internet without any luck, so I thought i'd check and see if anyone here had insights.Shawn
07/04/2018, 5:07 AMlenois
07/05/2018, 1:32 PM