Commit fb92ff4 1 parent 9bf659d commit fb92ff4 Copy full SHA for fb92ff4
File tree 4 files changed +79
-2
lines changed
4 files changed +79
-2
lines changed Original file line number Diff line number Diff line change 28
28
distribution : ' temurin'
29
29
cache : maven
30
30
- name : Build with Maven
31
- run : mvn -B verify javadoc:jar source:jar
31
+ run : mvn -B verify
32
32
33
33
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
34
34
- name : Update dependency graph
Original file line number Diff line number Diff line change
1
+ -Xmx2048m -Xms1024m -Djava.awt.headless=true
Original file line number Diff line number Diff line change
1
+ -T4C
2
+ --fail-at-end
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >me.kpavlov.await4j</groupId >
8
8
<artifactId >await4j</artifactId >
9
- <version >1.0 .0-SNAPSHOT</version >
9
+ <version >0.1 .0-SNAPSHOT</version >
10
10
11
11
<name >await4j</name >
12
12
<description >Simplify Java async programming with virtual threads using an async/await style API.</description >
68
68
</dependency >
69
69
</dependencies >
70
70
71
+ <build >
72
+ <plugins >
73
+ <plugin >
74
+ <groupId >org.apache.maven.plugins</groupId >
75
+ <artifactId >maven-source-plugin</artifactId >
76
+ <executions >
77
+ <execution >
78
+ <id >attach-sources</id >
79
+ <goals >
80
+ <goal >jar-no-fork</goal >
81
+ </goals >
82
+ </execution >
83
+ </executions >
84
+ </plugin >
85
+ <plugin >
86
+ <groupId >org.apache.maven.plugins</groupId >
87
+ <artifactId >maven-javadoc-plugin</artifactId >
88
+ <executions >
89
+ <execution >
90
+ <id >attach-javadocs</id >
91
+ <goals >
92
+ <goal >jar</goal >
93
+ </goals >
94
+ </execution >
95
+ </executions >
96
+ </plugin >
97
+ <plugin >
98
+ <groupId >org.apache.maven.plugins</groupId >
99
+ <artifactId >maven-release-plugin</artifactId >
100
+ <configuration >
101
+ <autoVersionSubmodules >true</autoVersionSubmodules >
102
+ <useReleaseProfile >true</useReleaseProfile >
103
+ <releaseProfiles >release</releaseProfiles >
104
+ <goals >deploy</goals >
105
+ </configuration >
106
+ </plugin >
107
+ </plugins >
108
+ </build >
109
+
110
+ <distributionManagement >
111
+ <snapshotRepository >
112
+ <id >ossrh</id >
113
+ <url >https://s01.oss.sonatype.org/content/repositories/snapshots</url >
114
+ </snapshotRepository >
115
+ <repository >
116
+ <id >ossrh</id >
117
+ <url >https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url >
118
+ </repository >
119
+ </distributionManagement >
120
+
121
+ <profiles >
122
+ <profile >
123
+ <id >release</id >
124
+ <build >
125
+ <plugins >
126
+ <plugin >
127
+ <groupId >org.apache.maven.plugins</groupId >
128
+ <artifactId >maven-gpg-plugin</artifactId >
129
+ <version >3.2.3</version >
130
+ <executions >
131
+ <execution >
132
+ <id >sign-artifacts</id >
133
+ <phase >verify</phase >
134
+ <goals >
135
+ <goal >sign</goal >
136
+ </goals >
137
+ </execution >
138
+ </executions >
139
+ </plugin >
140
+ </plugins >
141
+ </build >
142
+ </profile >
143
+ </profiles >
144
+
71
145
</project >
You can’t perform that action at this time.
0 commit comments