File tree Expand file tree Collapse file tree 10 files changed +142
-3
lines changed
springdoc-openapi-data-rest
springdoc-openapi-hateoas
springdoc-openapi-security
springdoc-openapi-webflux-core
springdoc-openapi-webflux-ui
springdoc-openapi-webmvc-core Expand file tree Collapse file tree 10 files changed +142
-3
lines changed Original file line number Diff line number Diff line change 47
47
<optional >true</optional >
48
48
</dependency >
49
49
</dependencies >
50
+ <build >
51
+ <plugins >
52
+ <plugin >
53
+ <groupId >org.apache.maven.plugins</groupId >
54
+ <artifactId >maven-jar-plugin</artifactId >
55
+ <configuration >
56
+ <archive >
57
+ <manifestEntries >
58
+ <Automatic-Module-Name >org.springdoc.openapi.common</Automatic-Module-Name >
59
+ </manifestEntries >
60
+ </archive >
61
+ </configuration >
62
+ </plugin >
63
+ </plugins >
64
+ </build >
50
65
</project >
Original file line number Diff line number Diff line change 50
50
<scope >test</scope >
51
51
</dependency >
52
52
</dependencies >
53
+ <build >
54
+ <plugins >
55
+ <plugin >
56
+ <groupId >org.apache.maven.plugins</groupId >
57
+ <artifactId >maven-jar-plugin</artifactId >
58
+ <configuration >
59
+ <archive >
60
+ <manifestEntries >
61
+ <Automatic-Module-Name >org.springdoc.openapi.data.rest</Automatic-Module-Name >
62
+ </manifestEntries >
63
+ </archive >
64
+ </configuration >
65
+ </plugin >
66
+ </plugins >
67
+ </build >
53
68
</project >
Original file line number Diff line number Diff line change 33
33
34
34
<build >
35
35
<plugins >
36
+ <plugin >
37
+ <groupId >org.apache.maven.plugins</groupId >
38
+ <artifactId >maven-jar-plugin</artifactId >
39
+ <configuration >
40
+ <archive >
41
+ <manifestEntries >
42
+ <Automatic-Module-Name >org.springdoc.openapi.groovy</Automatic-Module-Name >
43
+ </manifestEntries >
44
+ </archive >
45
+ </configuration >
46
+ </plugin >
36
47
<plugin >
37
48
<groupId >org.codehaus.gmavenplus</groupId >
38
49
<artifactId >gmavenplus-plugin</artifactId >
Original file line number Diff line number Diff line change 50
50
<scope >test</scope >
51
51
</dependency >
52
52
</dependencies >
53
-
54
-
53
+ <build >
54
+ <plugins >
55
+ <plugin >
56
+ <groupId >org.apache.maven.plugins</groupId >
57
+ <artifactId >maven-jar-plugin</artifactId >
58
+ <configuration >
59
+ <archive >
60
+ <manifestEntries >
61
+ <Automatic-Module-Name >org.springdoc.openapi.hateoas</Automatic-Module-Name >
62
+ </manifestEntries >
63
+ </archive >
64
+ </configuration >
65
+ </plugin >
66
+ </plugins >
67
+ </build >
55
68
</project >
Original file line number Diff line number Diff line change 37
37
38
38
<build >
39
39
<plugins >
40
+ <plugin >
41
+ <groupId >org.apache.maven.plugins</groupId >
42
+ <artifactId >maven-jar-plugin</artifactId >
43
+ <configuration >
44
+ <archive >
45
+ <manifestEntries >
46
+ <Automatic-Module-Name >org.springdoc.openapi.kotlin</Automatic-Module-Name >
47
+ </manifestEntries >
48
+ </archive >
49
+ </configuration >
50
+ </plugin >
40
51
<plugin >
41
52
<artifactId >kotlin-maven-plugin</artifactId >
42
53
<groupId >org.jetbrains.kotlin</groupId >
Original file line number Diff line number Diff line change 53
53
<scope >test</scope >
54
54
</dependency >
55
55
</dependencies >
56
-
56
+ <build >
57
+ <plugins >
58
+ <plugin >
59
+ <groupId >org.apache.maven.plugins</groupId >
60
+ <artifactId >maven-jar-plugin</artifactId >
61
+ <configuration >
62
+ <archive >
63
+ <manifestEntries >
64
+ <Automatic-Module-Name >org.springdoc.openapi.security</Automatic-Module-Name >
65
+ </manifestEntries >
66
+ </archive >
67
+ </configuration >
68
+ </plugin >
69
+ </plugins >
70
+ </build >
57
71
</project >
Original file line number Diff line number Diff line change 44
44
<scope >test</scope >
45
45
</dependency >
46
46
</dependencies >
47
+ <build >
48
+ <plugins >
49
+ <plugin >
50
+ <groupId >org.apache.maven.plugins</groupId >
51
+ <artifactId >maven-jar-plugin</artifactId >
52
+ <configuration >
53
+ <archive >
54
+ <manifestEntries >
55
+ <Automatic-Module-Name >org.springdoc.openapi.ui</Automatic-Module-Name >
56
+ </manifestEntries >
57
+ </archive >
58
+ </configuration >
59
+ </plugin >
60
+ </plugins >
61
+ </build >
47
62
</project >
Original file line number Diff line number Diff line change 29
29
<scope >test</scope >
30
30
</dependency >
31
31
</dependencies >
32
+ <build >
33
+ <plugins >
34
+ <plugin >
35
+ <groupId >org.apache.maven.plugins</groupId >
36
+ <artifactId >maven-jar-plugin</artifactId >
37
+ <configuration >
38
+ <archive >
39
+ <manifestEntries >
40
+ <Automatic-Module-Name >org.springdoc.openapi.webflux.core</Automatic-Module-Name >
41
+ </manifestEntries >
42
+ </archive >
43
+ </configuration >
44
+ </plugin >
45
+ </plugins >
46
+ </build >
32
47
</project >
Original file line number Diff line number Diff line change 34
34
<scope >test</scope >
35
35
</dependency >
36
36
</dependencies >
37
+ <build >
38
+ <plugins >
39
+ <plugin >
40
+ <groupId >org.apache.maven.plugins</groupId >
41
+ <artifactId >maven-jar-plugin</artifactId >
42
+ <configuration >
43
+ <archive >
44
+ <manifestEntries >
45
+ <Automatic-Module-Name >org.springdoc.openapi.webflux.ui</Automatic-Module-Name >
46
+ </manifestEntries >
47
+ </archive >
48
+ </configuration >
49
+ </plugin >
50
+ </plugins >
51
+ </build >
37
52
</project >
Original file line number Diff line number Diff line change 44
44
<scope >test</scope >
45
45
</dependency >
46
46
</dependencies >
47
+ <build >
48
+ <plugins >
49
+ <plugin >
50
+ <groupId >org.apache.maven.plugins</groupId >
51
+ <artifactId >maven-jar-plugin</artifactId >
52
+ <configuration >
53
+ <archive >
54
+ <manifestEntries >
55
+ <Automatic-Module-Name >org.springdoc.openapi.webmvc.core</Automatic-Module-Name >
56
+ </manifestEntries >
57
+ </archive >
58
+ </configuration >
59
+ </plugin >
60
+ </plugins >
61
+ </build >
47
62
</project >
You can’t perform that action at this time.
0 commit comments