Commit d2b7f7a 1 parent 9b892e4 commit d2b7f7a Copy full SHA for d2b7f7a
File tree 2 files changed +32
-4
lines changed
2 files changed +32
-4
lines changed Original file line number Diff line number Diff line change 2
2
# Deploy maven artefact in current directory into Maven central repository
3
3
# using maven-release-plugin goals
4
4
5
- read -p " Really deploy to maven cetral repository (yes/no)? "
5
+ read -p " Really deploy to maven central repository (yes/no)? "
6
6
7
7
if ( [ " $REPLY " == " yes" ] ) then
8
8
ssh-add ~ /.ssh/github.ppk
Original file line number Diff line number Diff line change 4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
6
6
7
- <groupId >com.portfolionaire.realitycheck </groupId >
7
+ <groupId >com.yanimetaxas </groupId >
8
8
<artifactId >realitycheck</artifactId >
9
- <version >0.1 -SNAPSHOT</version >
9
+ <version >0.5 -SNAPSHOT</version >
10
10
11
11
<name >Reality Check</name >
12
12
<url >https://github.com/imetaxas/realitycheck</url >
113
113
</executions >
114
114
</plugin >
115
115
116
+ <!-- <plugin>
117
+ <groupId>org.apache.maven.plugins</groupId>
118
+ <artifactId>maven-deploy-plugin</artifactId>
119
+ <version>2.7</version>
120
+ <configuration>
121
+ <skip>true</skip>
122
+ </configuration>
123
+ </plugin>-->
124
+
116
125
<plugin >
117
126
<groupId >org.sonatype.plugins</groupId >
118
127
<artifactId >nexus-staging-maven-plugin</artifactId >
121
130
<configuration >
122
131
<serverId >oss.sonatype.org</serverId >
123
132
<nexusUrl >https://oss.sonatype.org/</nexusUrl >
124
- <description >${project.version} </description >
125
133
</configuration >
126
134
<executions >
127
135
<execution >
135
143
</executions >
136
144
</plugin >
137
145
146
+ <!-- <plugin>
147
+ <groupId>org.sonatype.plugins</groupId>
148
+ <artifactId>nexus-staging-maven-plugin</artifactId>
149
+ <version>1.6</version>
150
+ <executions>
151
+ <execution>
152
+ <id>default-deploy</id>
153
+ <phase>deploy</phase>
154
+ <goals>
155
+ <goal>deploy</goal>
156
+ </goals>
157
+ </execution>
158
+ </executions>
159
+ <configuration>
160
+ <serverId>nexus</serverId>
161
+ <nexusUrl>http://localhost:8081/nexus/</nexusUrl>
162
+ <skipStaging>true</skipStaging>
163
+ </configuration>
164
+ </plugin>-->
165
+
138
166
<plugin >
139
167
<groupId >org.apache.maven.plugins</groupId >
140
168
<artifactId >maven-release-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments