File tree 3 files changed +20
-19
lines changed
3 files changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,30 @@ plugins {
3
3
// OSGI
4
4
id " biz.aQute.bnd.builder" version " 7.0.0"
5
5
// Provide convenience executables for trying out the examples.
6
- // id 'application'
6
+ id ' application'
7
7
id ' com.google.protobuf' version ' 0.9.4'
8
8
// Generate IntelliJ IDEA's .idea & .iml project files
9
9
// id 'idea'
10
10
}
11
11
12
- // apply plugin: 'java'
13
- // apply plugin: 'com.google.protobuf'
12
+ apply plugin : ' java'
13
+ apply plugin : ' com.google.protobuf'
14
+
15
+ sourceSets {
16
+
17
+ main {
18
+ java {
19
+ srcDirs ' build/generated/source/proto/main/grpc'
20
+ srcDirs ' build/generated/source/proto/main/java'
21
+ }
22
+ }
23
+
24
+ java9 {
25
+ java {
26
+ srcDirs = [' src/main/jdk1.9' ]
27
+ }
28
+ }
29
+ }
14
30
15
31
dependencies {
16
32
implementation project(' :core' )
@@ -102,19 +118,6 @@ protobuf {
102
118
103
119
jar. archiveBaseName = " bcmls-$vmrange "
104
120
105
- sourceSets {
106
- main {
107
- java {
108
- srcDirs ' build/generated/source/proto/main/grpc'
109
- srcDirs ' build/generated/source/proto/main/java'
110
- }
111
- }
112
- java9 {
113
- java {
114
- srcDirs = [' src/main/jdk1.9' ]
115
- }
116
- }
117
- }
118
121
119
122
startScripts. enabled = false
120
123
Original file line number Diff line number Diff line change 1
1
module org .bouncycastle .mls
2
2
{
3
- provides java .security .Provider with org .bouncycastle .jsse .provider .BouncyCastleJsseProvider ;
4
-
5
3
requires java .logging ;
6
4
requires org .bouncycastle .provider ;
7
5
requires org .bouncycastle .util ;
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ include "pkix"
5
5
include " prov"
6
6
include " tls"
7
7
include " test"
8
- // include "mls"
8
+ include " mls"
9
9
include " mail"
10
10
include " jmail"
You can’t perform that action at this time.
0 commit comments