Skip to content

Commit 7e96a2a

Browse files
authored
Migrating to dev (#5)
* Migrating to dev. * Fixing compilation of SpringInlineHandler. Some refactoring.
1 parent 9077d93 commit 7e96a2a

6 files changed

Lines changed: 319 additions & 313 deletions

File tree

aop-common/pom.xml

Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
- Copyright 2013-2017 consulo.io
3+
- Copyright 2013-2025 consulo.io
44
-
55
- Licensed under the Apache License, Version 2.0 (the "License");
66
- you may not use this file except in compliance with the License.
@@ -16,62 +16,62 @@
1616
-->
1717
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
1818
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19-
<modelVersion>4.0.0</modelVersion>
20-
<parent>
21-
<groupId>consulo</groupId>
22-
<artifactId>arch.ide-api-provided</artifactId>
23-
<version>3-SNAPSHOT</version>
24-
<relativePath/>
25-
</parent>
19+
<modelVersion>4.0.0</modelVersion>
20+
<parent>
21+
<groupId>consulo</groupId>
22+
<artifactId>arch.ide-api-provided</artifactId>
23+
<version>3-SNAPSHOT</version>
24+
<relativePath/>
25+
</parent>
2626

27-
<groupId>consulo.plugin</groupId>
28-
<artifactId>com.intellij.aop</artifactId>
29-
<version>3-SNAPSHOT</version>
30-
<packaging>jar</packaging>
27+
<groupId>consulo.plugin</groupId>
28+
<artifactId>com.intellij.aop</artifactId>
29+
<version>3-SNAPSHOT</version>
30+
<packaging>jar</packaging>
3131

32-
<repositories>
33-
<repository>
34-
<id>consulo</id>
35-
<url>https://maven.consulo.io/repository/snapshots/</url>
36-
<snapshots>
37-
<enabled>true</enabled>
38-
<updatePolicy>interval:60</updatePolicy>
39-
</snapshots>
40-
</repository>
41-
</repositories>
32+
<repositories>
33+
<repository>
34+
<id>consulo</id>
35+
<url>https://maven.consulo.dev/repository/snapshots/</url>
36+
<snapshots>
37+
<enabled>true</enabled>
38+
<updatePolicy>interval:60</updatePolicy>
39+
</snapshots>
40+
</repository>
41+
</repositories>
4242

43-
<build>
44-
<plugins>
45-
<plugin>
46-
<groupId>consulo.maven</groupId>
47-
<artifactId>maven-consulo-plugin</artifactId>
48-
<extensions>true</extensions>
49-
<executions>
50-
<execution>
51-
<id>gen</id>
52-
<phase>generate-sources</phase>
53-
<goals>
54-
<goal>generate-icon</goal>
55-
<goal>generate-localize</goal>
56-
</goals>
57-
</execution>
58-
</executions>
59-
</plugin>
60-
</plugins>
61-
</build>
43+
<build>
44+
<plugins>
45+
<plugin>
46+
<groupId>consulo.maven</groupId>
47+
<artifactId>maven-consulo-plugin</artifactId>
48+
<extensions>true</extensions>
49+
<executions>
50+
<execution>
51+
<id>gen</id>
52+
<phase>generate-sources</phase>
53+
<goals>
54+
<goal>generate-icon</goal>
55+
<goal>generate-localize</goal>
56+
</goals>
57+
</execution>
58+
</executions>
59+
</plugin>
60+
</plugins>
61+
</build>
6262

63-
<dependencies>
64-
<dependency>
65-
<groupId>${project.groupId}</groupId>
66-
<artifactId>consulo.java</artifactId>
67-
<version>${project.version}</version>
68-
<scope>provided</scope>
69-
</dependency>
70-
<dependency>
71-
<groupId>${project.groupId}</groupId>
72-
<artifactId>com.intellij.xml</artifactId>
73-
<version>${project.version}</version>
74-
<scope>provided</scope>
75-
</dependency>
76-
</dependencies>
63+
<dependencies>
64+
<dependency>
65+
<groupId>${project.groupId}</groupId>
66+
<artifactId>consulo.java</artifactId>
67+
<version>${project.version}</version>
68+
<scope>provided</scope>
69+
</dependency>
70+
<dependency>
71+
<groupId>${project.groupId}</groupId>
72+
<artifactId>com.intellij.xml</artifactId>
73+
<version>${project.version}</version>
74+
<scope>provided</scope>
75+
</dependency>
76+
</dependencies>
7777
</project>

java-ex-impl/pom.xml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
- Copyright 2013-2017 consulo.io
3+
- Copyright 2013-2025 consulo.io
44
-
55
- Licensed under the Apache License, Version 2.0 (the "License");
66
- you may not use this file except in compliance with the License.
@@ -16,42 +16,42 @@
1616
-->
1717
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
1818
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19-
<modelVersion>4.0.0</modelVersion>
20-
<parent>
21-
<groupId>consulo</groupId>
22-
<artifactId>arch.ide-api-provided</artifactId>
23-
<version>3-SNAPSHOT</version>
24-
<relativePath/>
25-
</parent>
19+
<modelVersion>4.0.0</modelVersion>
20+
<parent>
21+
<groupId>consulo</groupId>
22+
<artifactId>arch.ide-api-provided</artifactId>
23+
<version>3-SNAPSHOT</version>
24+
<relativePath/>
25+
</parent>
2626

27-
<groupId>consulo.plugin</groupId>
28-
<artifactId>com.intellij.spring-java.ex.impl</artifactId>
29-
<version>3-SNAPSHOT</version>
30-
<packaging>jar</packaging>
27+
<groupId>consulo.plugin</groupId>
28+
<artifactId>com.intellij.spring-java.ex.impl</artifactId>
29+
<version>3-SNAPSHOT</version>
30+
<packaging>jar</packaging>
3131

32-
<repositories>
33-
<repository>
34-
<id>consulo</id>
35-
<url>https://maven.consulo.io/repository/snapshots/</url>
36-
<snapshots>
37-
<enabled>true</enabled>
38-
<updatePolicy>interval:always</updatePolicy>
39-
</snapshots>
40-
</repository>
41-
</repositories>
32+
<repositories>
33+
<repository>
34+
<id>consulo</id>
35+
<url>https://maven.consulo.dev/repository/snapshots/</url>
36+
<snapshots>
37+
<enabled>true</enabled>
38+
<updatePolicy>interval:always</updatePolicy>
39+
</snapshots>
40+
</repository>
41+
</repositories>
4242

43-
<dependencies>
44-
<dependency>
45-
<groupId>${project.groupId}</groupId>
46-
<artifactId>consulo.java</artifactId>
47-
<version>${project.version}</version>
48-
<scope>provided</scope>
49-
</dependency>
50-
<dependency>
51-
<groupId>${project.groupId}</groupId>
52-
<artifactId>com.intellij.xml</artifactId>
53-
<version>${project.version}</version>
54-
<scope>provided</scope>
55-
</dependency>
56-
</dependencies>
43+
<dependencies>
44+
<dependency>
45+
<groupId>${project.groupId}</groupId>
46+
<artifactId>consulo.java</artifactId>
47+
<version>${project.version}</version>
48+
<scope>provided</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>${project.groupId}</groupId>
52+
<artifactId>com.intellij.xml</artifactId>
53+
<version>${project.version}</version>
54+
<scope>provided</scope>
55+
</dependency>
56+
</dependencies>
5757
</project>

maven-impl/pom.xml

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
- Copyright 2013-2017 consulo.io
3+
- Copyright 2013-2025 consulo.io
44
-
55
- Licensed under the Apache License, Version 2.0 (the "License");
66
- you may not use this file except in compliance with the License.
@@ -16,48 +16,48 @@
1616
-->
1717
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
1818
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19-
<modelVersion>4.0.0</modelVersion>
20-
<parent>
21-
<groupId>consulo</groupId>
22-
<artifactId>arch.ide-api-provided</artifactId>
23-
<version>3-SNAPSHOT</version>
24-
<relativePath/>
25-
</parent>
19+
<modelVersion>4.0.0</modelVersion>
20+
<parent>
21+
<groupId>consulo</groupId>
22+
<artifactId>arch.ide-api-provided</artifactId>
23+
<version>3-SNAPSHOT</version>
24+
<relativePath/>
25+
</parent>
2626

27-
<groupId>consulo.plugin</groupId>
28-
<artifactId>com.intellij.spring-maven.impl</artifactId>
29-
<version>3-SNAPSHOT</version>
30-
<packaging>jar</packaging>
27+
<groupId>consulo.plugin</groupId>
28+
<artifactId>com.intellij.spring-maven.impl</artifactId>
29+
<version>3-SNAPSHOT</version>
30+
<packaging>jar</packaging>
3131

32-
<repositories>
33-
<repository>
34-
<id>consulo</id>
35-
<url>https://maven.consulo.io/repository/snapshots/</url>
36-
<snapshots>
37-
<enabled>true</enabled>
38-
<updatePolicy>interval:always</updatePolicy>
39-
</snapshots>
40-
</repository>
41-
</repositories>
32+
<repositories>
33+
<repository>
34+
<id>consulo</id>
35+
<url>https://maven.consulo.dev/repository/snapshots/</url>
36+
<snapshots>
37+
<enabled>true</enabled>
38+
<updatePolicy>interval:always</updatePolicy>
39+
</snapshots>
40+
</repository>
41+
</repositories>
4242

43-
<dependencies>
44-
<dependency>
45-
<groupId>${project.groupId}</groupId>
46-
<artifactId>consulo.java</artifactId>
47-
<version>${project.version}</version>
48-
<scope>provided</scope>
49-
</dependency>
50-
<dependency>
51-
<groupId>${project.groupId}</groupId>
52-
<artifactId>com.intellij.xml</artifactId>
53-
<version>${project.version}</version>
54-
<scope>provided</scope>
55-
</dependency>
56-
<dependency>
57-
<groupId>${project.groupId}</groupId>
58-
<artifactId>org.jetbrains.idea.maven</artifactId>
59-
<version>${project.version}</version>
60-
<scope>provided</scope>
61-
</dependency>
62-
</dependencies>
43+
<dependencies>
44+
<dependency>
45+
<groupId>${project.groupId}</groupId>
46+
<artifactId>consulo.java</artifactId>
47+
<version>${project.version}</version>
48+
<scope>provided</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>${project.groupId}</groupId>
52+
<artifactId>com.intellij.xml</artifactId>
53+
<version>${project.version}</version>
54+
<scope>provided</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>${project.groupId}</groupId>
58+
<artifactId>org.jetbrains.idea.maven</artifactId>
59+
<version>${project.version}</version>
60+
<scope>provided</scope>
61+
</dependency>
62+
</dependencies>
6363
</project>

plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
- Copyright 2013-2017 consulo.io
3+
- Copyright 2013-2025 consulo.io
44
-
55
- Licensed under the Apache License, Version 2.0 (the "License");
66
- you may not use this file except in compliance with the License.
@@ -32,7 +32,7 @@
3232
<repositories>
3333
<repository>
3434
<id>consulo</id>
35-
<url>https://maven.consulo.io/repository/snapshots/</url>
35+
<url>https://maven.consulo.dev/repository/snapshots/</url>
3636
<snapshots>
3737
<enabled>true</enabled>
3838
<updatePolicy>interval:60</updatePolicy>

0 commit comments

Comments
 (0)