File tree Expand file tree Collapse file tree 6 files changed +70
-30
lines changed Expand file tree Collapse file tree 6 files changed +70
-30
lines changed Original file line number Diff line number Diff line change 70
70
</goals >
71
71
<configuration >
72
72
<module >
73
- <moduleInfo >
74
- <name >io.jsonwebtoken.jjwt.api</name >
75
- <exports >
76
- io.jsonwebtoken;
77
- io.jsonwebtoken.*;
78
- </exports >
79
- </moduleInfo >
73
+ <moduleInfoSource >
74
+ module io.jsonwebtoken.jjwt.api {
75
+ exports io.jsonwebtoken;
76
+ exports io.jsonwebtoken.io;
77
+ exports io.jsonwebtoken.lang;
78
+ exports io.jsonwebtoken.security;
79
+ }
80
+ </moduleInfoSource >
80
81
</module >
81
82
</configuration >
82
83
</execution >
Original file line number Diff line number Diff line change 64
64
</goals >
65
65
<configuration >
66
66
<module >
67
- <moduleInfo >
68
- <name >io.jsonwebtoken.jjwt.ext.gson</name >
69
- </moduleInfo >
67
+ <moduleInfoSource >
68
+ module io.jsonwebtoken.jjwt.ext.gson {
69
+ requires transitive com.google.gson;
70
+ requires io.jsonwebtoken.jjwt.api;
71
+
72
+ exports io.jsonwebtoken.gson.io;
73
+
74
+ provides io.jsonwebtoken.io.Deserializer with
75
+ io.jsonwebtoken.gson.io.GsonDeserializer;
76
+ provides io.jsonwebtoken.io.Serializer with
77
+ io.jsonwebtoken.gson.io.GsonSerializer;
78
+ }
79
+ </moduleInfoSource >
70
80
</module >
71
81
</configuration >
72
82
</execution >
Original file line number Diff line number Diff line change 98
98
</goals >
99
99
<configuration >
100
100
<module >
101
- <moduleInfo >
102
- <name >io.jsonwebtoken.jjwt.ext.jackson</name >
103
- </moduleInfo >
101
+ <moduleInfoSource >
102
+ module io.jsonwebtoken.jjwt.ext.jackson {
103
+ requires transitive com.fasterxml.jackson.core;
104
+ requires transitive com.fasterxml.jackson.databind;
105
+ requires io.jsonwebtoken.jjwt.api;
106
+
107
+ exports io.jsonwebtoken.jackson.io;
108
+
109
+ provides io.jsonwebtoken.io.Deserializer with
110
+ io.jsonwebtoken.jackson.io.JacksonDeserializer;
111
+ provides io.jsonwebtoken.io.Serializer with
112
+ io.jsonwebtoken.jackson.io.JacksonSerializer;
113
+
114
+ }
115
+ </moduleInfoSource >
104
116
</module >
105
117
</configuration >
106
118
</execution >
Original file line number Diff line number Diff line change 98
98
</goals >
99
99
<configuration >
100
100
<module >
101
- <moduleInfo >
102
- <name >io.jsonwebtoken.jjwt.ext.orgjson</name >
103
- </moduleInfo >
101
+ <moduleInfoSource >
102
+ module io.jsonwebtoken.jjwt.ext.orgjson {
103
+ requires transitive json;
104
+ requires io.jsonwebtoken.jjwt.api;
105
+
106
+ exports io.jsonwebtoken.orgjson.io;
107
+
108
+ provides io.jsonwebtoken.io.Deserializer with io.jsonwebtoken.orgjson.io.OrgJsonDeserializer;
109
+ provides io.jsonwebtoken.io.Serializer with io.jsonwebtoken.orgjson.io.OrgJsonSerializer;
110
+ }
111
+
112
+ </moduleInfoSource >
104
113
</module >
105
114
</configuration >
106
115
</execution >
Original file line number Diff line number Diff line change 86
86
</goals >
87
87
<configuration >
88
88
<module >
89
- <moduleInfo >
90
- <name >io.jsonwebtoken.jjwt.impl</name >
91
- <requires >
92
- io.jsonwebtoken.jjwt.api;
93
- </requires >
94
- <uses >
95
- io.jsonwebtoken.CompressionCodec;
96
- io.jsonwebtoken.io.Deserializer;
97
- io.jsonwebtoken.io.Serializer;
98
- </uses >
99
- </moduleInfo >
89
+ <moduleInfoSource >
90
+ module io.jsonwebtoken.jjwt.impl {
91
+ requires io.jsonwebtoken.jjwt.api;
92
+
93
+ exports io.jsonwebtoken.impl;
94
+ exports io.jsonwebtoken.impl.compression;
95
+ exports io.jsonwebtoken.impl.crypto;
96
+ exports io.jsonwebtoken.impl.lang;
97
+
98
+ provides io.jsonwebtoken.CompressionCodec with
99
+ io.jsonwebtoken.impl.compression.DeflateCompressionCodec,
100
+ io.jsonwebtoken.impl.compression.GzipCompressionCodec;
101
+
102
+ uses io.jsonwebtoken.CompressionCodec;
103
+ uses io.jsonwebtoken.io.Deserializer;
104
+ uses io.jsonwebtoken.io.Serializer;
105
+ }
106
+
107
+ </moduleInfoSource >
100
108
</module >
101
109
</configuration >
102
110
</execution >
Original file line number Diff line number Diff line change 71
71
<gmavenplus .version>1.6.1</gmavenplus .version>
72
72
<moditect .version>1.0.0.RC2</moditect .version>
73
73
74
- <jdk .version>1. 7</jdk .version>
74
+ <jdk .version>7</jdk .version>
75
75
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
76
76
<buildNumber >${user.name}-${maven.build.timestamp}</buildNumber >
77
77
550
550
<jdk >[,9)</jdk >
551
551
</activation >
552
552
<properties >
553
- <maven .compiler.source>${jdk.version} </maven .compiler.source>
554
- <maven .compiler.target>${jdk.version} </maven .compiler.target>
553
+ <maven .compiler.source>1. ${jdk.version} </maven .compiler.source>
554
+ <maven .compiler.target>1. ${jdk.version} </maven .compiler.target>
555
555
</properties >
556
556
</profile >
557
557
<profile >
You can’t perform that action at this time.
0 commit comments