-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
実装されているステップの一覧が欲しい #2
Comments
とりあえず @ayato-p に依頼されてからやってきたことの共有と、今後の課題感について共有しときます。 やったこと
<profiles>
<profile>
<id>annotation-processing</id>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>dev.i-whammy</groupId>
<artifactId>gauge-annotation-processor</artifactId>
<version>0.1.0</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
<annotationProcessor>dev.iwhammy.GaugeAnnotationProcessor</annotationProcessor>
</annotationProcessors>
</configuration>
<executions>
<execution>
<id>run-annotation-processor</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles> $ mvn clean compile -Pannotation-processing
...
[INFO] --- kotlin:1.9.21:kapt (default-kapt) @ playtest-core ---
整数値の<value>である
文字列の<value>である
文字列の<value>を含んでいる
... 課題感
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: