File tree 3 files changed +21
-17
lines changed
3 files changed +21
-17
lines changed Original file line number Diff line number Diff line change 126
126
</Target >
127
127
128
128
<ItemGroup >
129
- <JavaBuildFiles Include =" signalr-client-$(JavaClientVersion).jar;signalr-client-$(JavaClientVersion)-javadoc.jar;signalr-client-$(JavaClientVersion)-sources.jar;signalr-client-$(JavaClientVersion).pom" />
130
- </ItemGroup >
131
-
132
- <ItemGroup >
133
- <Jars Include =" signalr-client-$(JavaClientVersion).jar;signalr-client-$(JavaClientVersion)-javadoc.jar;signalr-client-$(JavaClientVersion)-sources.jar;" />
134
- </ItemGroup >
135
-
136
- <ItemGroup >
137
- <PomFile Include =" signalr-client-$(JavaClientVersion).pom" />
129
+ <Jars Include =" signalr-$(JavaClientVersion).jar;signalr-$(JavaClientVersion)-javadoc.jar;signalr-$(JavaClientVersion)-sources.jar;" />
130
+ <PomFile Include =" signalr-$(JavaClientVersion).pom" />
131
+ <JavaBuildFiles Include =" @(Jars);@(PomFile)" />
138
132
</ItemGroup >
139
133
140
134
<Target Name =" PackJavaClient" Condition =" '$(HasJdk)' == 'true'" >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ plugins {
3
3
id ' maven'
4
4
}
5
5
6
- group ' com.microsoft.aspnetcore '
6
+ group ' com.microsoft.aspnet '
7
7
version ' 0.1.0-preview1'
8
8
9
9
sourceCompatibility = 1.8
@@ -31,21 +31,31 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
31
31
task generatePOM {
32
32
pom {
33
33
project {
34
- groupId ' com.microsoft.aspnetcore'
35
- artifactId ' signalr'
36
- version ' 0.1.0-preview1'
37
-
38
34
inceptionYear ' 2018'
35
+ description ' ASP.NET Core SignalR Client for Java applications'
36
+ url ' https://github.com/aspnet/SignalR'
37
+ name groupId + ' :' + artifactId
39
38
licenses {
40
39
license {
41
40
name ' The Apache Software License, Version 2.0'
42
41
url ' http://www.apache.org/licenses/LICENSE-2.0.txt'
43
42
distribution ' repo'
44
43
}
45
44
}
45
+ scm {
46
+ connection ' scm:git:git://github.com/aspnet/SignalR.git'
47
+ developerConnection ' scm:git:git://github.com/aspnet/SignalR.git'
48
+ url ' http://github.com/aspnet/SignalR/tree/master'
49
+ }
50
+ developers {
51
+ developer {
52
+ id ' microsoft'
53
+ name ' Microsoft'
54
+ }
55
+ }
46
56
}
47
- }. writeTo(" signalr-client- 0.1.0-preview1.pom" )
57
+ }. writeTo(" signalr-0.1.0-preview1.pom" )
48
58
49
- ant. move file : " signalr-client- 0.1.0-preview1.pom" ,
59
+ ant. move file : " signalr-0.1.0-preview1.pom" ,
50
60
todir : " ${ buildDir} /libs"
51
61
}
Original file line number Diff line number Diff line change 1
- rootProject. name = ' signalr-client '
1
+ rootProject. name = ' signalr'
2
2
include ' main'
3
3
You can’t perform that action at this time.
0 commit comments