|
13 | 13 | <name>Spring JavaFormat IntelliJ Runtime</name>
|
14 | 14 | <properties>
|
15 | 15 | <main.basedir>${basedir}/../..</main.basedir>
|
16 |
| - <intellij.binary>https://www.jetbrains.com/intellij-repository/releases/com/jetbrains/intellij/idea/ideaIC/2018.3.5/ideaIC-2018.3.5.zip</intellij.binary> |
17 |
| - <intellij.source>https://github.com/JetBrains/intellij-community/archive/idea/183.6156.4.zip</intellij.source> |
| 16 | + <intellij.binary>https://www.jetbrains.com/intellij-repository/releases/com/jetbrains/intellij/idea/ideaIC/2019.1/ideaIC-2019.1.zip</intellij.binary> |
| 17 | + <intellij.source>https://github.com/JetBrains/intellij-community/archive/idea/191.6183.87.zip</intellij.source> |
18 | 18 | </properties>
|
19 | 19 | <build>
|
20 | 20 | <plugins>
|
|
80 | 80 | <patternset>
|
81 | 81 | <include
|
82 | 82 | name="*/platform/core-api/src/**" />
|
| 83 | + <include |
| 84 | + name="*/platform/platform-impl/src/**" /> |
83 | 85 | <include
|
84 | 86 | name="*/platform/util/src/**" />
|
85 | 87 | <include
|
|
98 | 100 | <zip
|
99 | 101 | destfile="${project.build.directory}/intellij-source/platform-api-sources.zip"
|
100 | 102 | basedir="${project.build.directory}/intellij-source/platform/core-api/src" />
|
| 103 | + <zip |
| 104 | + destfile="${project.build.directory}/intellij-source/platform-impl-sources.zip" |
| 105 | + basedir="${project.build.directory}/intellij-source/platform/platform-impl/src" /> |
101 | 106 | <zip
|
102 | 107 | destfile="${project.build.directory}/intellij-source/util-sources.zip"
|
103 | 108 | basedir="${project.build.directory}/intellij-source/platform/util/src" />
|
|
142 | 147 | <generatePom>true</generatePom>
|
143 | 148 | </configuration>
|
144 | 149 | </execution>
|
| 150 | + <execution> |
| 151 | + <id>install-intellij-platform-impl</id> |
| 152 | + <phase>install</phase> |
| 153 | + <inherited>false</inherited> |
| 154 | + <goals> |
| 155 | + <goal>install-file</goal> |
| 156 | + </goals> |
| 157 | + <configuration> |
| 158 | + <file>${project.build.directory}/intellij/platform-impl.jar</file> |
| 159 | + <sources>${project.build.directory}/intellij-source/platform-impl-sources.zip</sources> |
| 160 | + <groupId>io.spring.javaformat.intellij</groupId> |
| 161 | + <artifactId>platform-impl</artifactId> |
| 162 | + <version>${project.version}</version> |
| 163 | + <packaging>jar</packaging> |
| 164 | + <generatePom>true</generatePom> |
| 165 | + </configuration> |
| 166 | + </execution> |
145 | 167 | <execution>
|
146 | 168 | <id>install-intellij-util</id>
|
147 | 169 | <phase>install</phase>
|
|
0 commit comments