Skip to content

Commit 698ff62

Browse files
committed
Enable import into Eclipse IDE
1 parent 06d9819 commit 698ff62

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ $ git submodule update --init --recursive
260260
$ ./mvnw clean install
261261
```
262262

263-
It also depends on [Immutables][i] and won't compile in IDEs like Eclipse or IntelliJ unless you also have an enabled annotation processor. See [this guide][j] for instructions on how to configure your IDE.
263+
It also depends on [Immutables][i] and won't compile in IDEs like Eclipse or IntelliJ unless you also have an installed annotation processor. See [this guide][j] for instructions on how to configure your IDE.
264264

265265
To run the integration tests, run the following:
266266

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
<wire.plugin.version>3.0.2</wire.plugin.version>
7474
<wire.suffix></wire.suffix>
7575
<spotless.version>2.44.4</spotless.version>
76+
<m2e.apt.activation>disabled</m2e.apt.activation><!-- used by Eclipse -->
7677
</properties>
7778

7879
<dependencyManagement>
@@ -180,18 +181,22 @@
180181
<dependency>
181182
<groupId>org.immutables</groupId>
182183
<artifactId>value</artifactId>
184+
<version>${immutables.version}</version>
183185
</dependency>
184186
<dependency>
185187
<groupId>com.fasterxml.jackson.core</groupId>
186188
<artifactId>jackson-core</artifactId>
189+
<version>${jackson.version}</version>
187190
</dependency>
188191
<dependency>
189192
<groupId>com.fasterxml.jackson.core</groupId>
190193
<artifactId>jackson-annotations</artifactId>
194+
<version>${jackson.version}</version>
191195
</dependency>
192196
<dependency>
193197
<groupId>com.fasterxml.jackson.core</groupId>
194198
<artifactId>jackson-databind</artifactId>
199+
<version>${jackson.version}</version>
195200
</dependency>
196201
</annotationProcessorPaths>
197202
<showWarnings>true</showWarnings>

0 commit comments

Comments
 (0)