-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME
More file actions
681 lines (547 loc) · 28.2 KB
/
README
File metadata and controls
681 lines (547 loc) · 28.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
Open Infinity Core - a solution accelerator framework.
v.3.2.0.RELEASE - New minor release with the following content
Upgrades to Maven dependencies
- Logback version to 1.1.7
- Spring Framework upgrade to 4.2.7.RELEASE
- Spring Security version upgrade to 4.0.4.RELEASE
- Spring Batch Core version upgrade to 3.0.7.RELEASE
- slf4j version upgrade to 1.7.21
- Jackson version upgrade to 1.9.13
- Hibernate validator version upgrade to 5.1.3.Final
- Validation Util version upgrade to 1.1.0.Final
- Joda time version upgrade to 2.9.4
- Lombok version upgrade to 1.16.6
- Jolokia version upgrade to 1.3.3
- Commons lang version upgrade to 3.3.2
- HDIV version upgrade to 3.2.0
- Keyzcar version 0.71g
- Xstream version upgrade to 1.4.9
- Commons codec version upgrade to 1.10
- Commons JXPATH version upgrade to 1.3
- Commons lang version upgrade to 2.6
- RXJava version upgrade to 1.1.8
- Commons IO version upgrade to 2.4
- EL Validation version 2.2.4
- Jersey bean validation 2.23.1
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.8 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/open-infinity/core
cd core
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
Open Infinity Core - a solution accelerator framework.
v.3.1.1.RELEASE - Bug fix release with the following content
- Java runtime upgrade to 1.8
- JavaDoc error handling
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.8 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/open-infinity/core
cd core
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
Open Infinity Core - a solution accelerator framework.
v.3.1.0.RELEASE - New minor release with the following content
Upgrades to Maven dependencies
- Spring Framework upgrade to 4.1.8.RELEASE
- Spring Security version upgrade to 4.0.2.RELEASE
- Spring Batch Core version upgrade to 3.0.5.RELEASE
- slf4j version upgrade to 1.7.12
- Jackson version upgrade to 1.9.13
- Hibernate validator version upgrade to 5.1.3.Final
- Validation Util version upgrade to 1.1.0.Final
- Joda time version upgrade to 2.8.2
- Lombok version upgrade to 1.16.6
- Jolokia version upgrade to 1.3.2
- Commons lang version upgrade to 3.3.2
- HDIV version upgrade to 2.1.12
- Keyzcar version upgrade to 0.71g
- Xstream version upgrade to 1.4.8
- Commons codec version upgrade to 1.10
- Commons JXPATH version upgrade to 1.3
- Commons lang version upgrade to 2.6
- RXJava version upgrade to 1.0.14
- Commons IO version upgrade to 2.4
- EL Validation version 2.2.4
- Jersey bean validation 2.22.1
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.7 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/open-infinity/core
cd core
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
Open Infinity Core - a solution accelerator framework.
v.3.0.0.RELEASE - New major release with the following content
Upgrades to Maven dependencies
- Spring Framework upgrade to 4.1.6.RELEASE
- Spring Security version upgrade to 4.0.1.RELEASE
- Spring Batch Core version upgrade to 3.0.3.RELEASE
- slf4j version upgrade to 1.7.12
- Jackson version upgrade to 1.9.13
- Hibernate validator version upgrade to 4.3.2.Final
- Validation Util version upgrade to 1.1.0.Final
- Joda time version upgrade to 2.5
- Lombok version upgrade to 1.14.8
- Jolokia version upgrade to 1.2.2
- Commons lang version upgrade to 3.3.2
- HDIV version upgrade to 2.1.10
- Keyzcar version upgrade to 0.71g
- Xstream version upgrade to 1.4.7
- Commons codec version upgrade to 1.9
- Commons JXPATH version upgrade to 1.3
- Commons lang version upgrade to 2.6
- RXJava version upgrade to 0.20.4
- Commons IO version upgrade to 2.4
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.7 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/open-infinity/core
cd core
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.2.0.0.RELEASE - New major release with the following content
New features for release
* ParallelServiceActivator bean for accessing services in parallel.
* AsyncResultCallback interface for accessing asynchonorous results.
* GenericCrudService*-interfaces for accessing services by parallel processing.
* Loadable interface for accessing asynchronous responses.
* CrudOperations provides standardized CRUD-operations for REST-interfaces.
* CrudService provides standardized CRUD-operations to service-interfaces.
* CollectionElementUtil and supporting interfaces for traverse objects.
* TraverseObjectCollectionElementCallback interface for traverse objects using Collection-interface.
* TraverseObjectMapElementCallback interface for traverse objects using Map-interface.
* ValidationUtil for Java bean validations.
* AbstractCoreException support for adding exception detail objects.
Upgrades to Maven dependencies
- Spring Framework upgrade to 3.2.11.RELEASE
- Spring Security version upgrade to 3.2.5.RELEASE
- Spring Batch Core version upgrade to 2.2.7.RELEASE
- slf4j version upgrade to 1.7.7
- Jackson version upgrade to 1.9.13
- Hibernate validator version upgrade to 4.3.2.Final
- Validation Util version upgrade to 1.1.0.Final
- Joda time version upgrade to 2.5
- Lombok version upgrade to 1.14.8
- Jolokia version upgrade to 1.2.2
- Commons lang version upgrade to 3.3.2
- HDIV version upgrade to 2.1.8
- Keyzcar version upgrade to 0.71g
- Xstream version upgrade to 1.4.7
- Commons codec version upgrade to 1.9
- Commons JXPATH version upgrade to 1.3
- Commons IO version upgrade to 2.4
- Commons lang version upgrade to 2.6
- RXJava version upgrade to 0.20.4
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.7 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/open-infinity/core
cd core
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
____________________________________________________________________________________________________________________________________________________________
v.1.5.1.RELEASE - Bug fixes with the following content
Upgrades to Maven dependencies
- commons-io version upgrade to 1.4
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/ileinone/open-infinity
cd <open-infinity-core>/releases/openinfinity-core/1.4.0
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.1.5.0.RELEASE - New features with the following content
+ Identity object has now ability to add user based attributes like phone number,
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/ileinone/open-infinity
cd <open-infinity-core>/releases/openinfinity-core/1.4.0
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.1.4.0.RELEASE - New features with the following content
+ BaseEntity support with lifecycle information support for standardized data models.
+ MultiTenantBaseEntity for shared schema context in SaaS solutions.
+ MultiTenantAspect support for injecting tenant id to domain entities.
Upgrades to Maven dependencies:
- jUnit support level upgraded to 4.11
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/ileinone/open-infinity
cd <open-infinity-core>/releases/openinfinity-core/1.4.0
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.1.3.1.RELEASE - Bug fixes with following content
+ CryptoSupport support for symmetric and asymmetric security algorithms.
Upgrades to Maven dependencies
- ehcache version upgrade to 2.7.1
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git checkout Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Symmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/symmetric --name="Open Infinity" --purpose=crypt
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/symmetric --name="Open Infinity" --status=primary
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/ileinone/open-infinity
cd <open-infinity-core>/releases/openinfinity-core/1.3.0
vi src/test/resources/properties/crypto.properties (define paths to your local file system for asymmetric and symmetric keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.1.3.0.RELEASE - Upgrades to Maven Dependencies
+ Keyczar 0.71g library added to support cryptography features
+ Apache Codec 1.8 library added to support Base 64 en/decoding
Features
- Cryptography aspect (encrypts and decrypts entity attributes defined by annotations)
Packaging instructions
Maven installation:
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Installing gryptography extensions:
mkdir <your location>
cd <your location>
git clone https://code.google.com/p/keyczar/
cd <your location>/keyczar/java/code/
git tag Java_release_0.71g
mvn clean install
cd target
Signing public and private keys with Keyczar:
Asymmetric cryptography extension
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar create --location=<your location>/security/asymmetric --name="Open Infinity" --purpose=crypt --asymmetric=rsa
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar addkey --location=<your location>/security/asymmetric --status=primary
java -jar KeyczarTool-0.71g-<mmDDyyyy>.jar pubkey --location=<your location>/security/asymmetric --destination=<your location>/security/pubkey
Install Lombok:
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/ileinone/open-infinity
cd <open-infinity-core>/releases/openinfinity-core/1.3.0
vi src/test/resources/properties/crypto.properties (define paths to your local file system for public and private keys)
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.1.2.0.RELEASE - Upgrades to Maven dependencies
+ HDIV Web Security library support level to 2.1.4
+ Spring Batch Core support level to 2.2.0.RELEASE
+ Spring Aspects support level to 3.1.4.RELEASE
+ Spring JMS support level to 3.1.4.RELEASE
- Spring Framework support level upgraded to 3.1.4.RELEASE
- Spring Security support level upgraded to 3.1.4.RELEASE
- SLF4J support level upgraded to 1.7.5
- JBehave support level upgraded to 3.8
- JBehave Web support level upgraded to 3.5.5
- Junit support level upgraded to 4.8.2
- Mockito support level upgraded to 1.9.5
- Hsqldb support level upgraded to 2.2.9
- Jackson support level upgraded to 1.9.12
- Hibernate validator support level upgraded to 4.2.0.Final
- Validation API version support level upgraded to 1.1.0.Final
- Joda time support level upgraded to 2.2
- Lombok support level upgraded to 0.11.8
- Jolokia support level upgraded to 1.1.1
- EHCache support level upgraded to 2.6.6
- Commons-lang support level upgraded to 2.6
Features
+ Collection element util for managing callbacks with Collections and Maps.
Packaging instructions.
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Install lombok
mkdir <lombok-directory>
cd <lombok-directory>
git clone https://github.com/awhitford/lombok.maven
cd lombok.maven
Use maven for compiling, testing, packaging lombok -plugin to local Maven repository with command:
mvn clean install
Install Open Infinity Core:
mkdir <open-infinity-core>
git clone https://github.com/ileinone/open-infinity
cd <open-infinity-core>/releases/openinfinity-core/1.1.1
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.1.1.0.RELEASE - Upgrades to Maven dependencies
- Spring Framework support level upgraded to 3.1.1
- Spring Security support level upgraded to 3.1.0
- JBehave support level upgraded to 3.6.2
- JBehave Web support level upgraded to 3.5.2
Features
- AuditTrailAspect upgrade to version 1.1.0 (Spring Security upgrade)
- LogAspect upgrade to version 1.1.0 (implements argument strategy based on audit trail)
- Log annotation upgrade to version 1.1.0 (implements argument strategy based on audit trail)
Packaging instructions.
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.1.0.1.RELEASE - Upgrades to Maven dependencies
Dependencies for the following components has been upgraded:
- Spring Framework support level upgraded to 3.0.7
- Jackson core and mapper support level upgraded to 1.9.5 license upgraded to ASL
- Lombok Project support level upgraded to 0.10.8
- SLF4J support level upgraded to 1.6.4
- Junit support level upgraded to 4.8.2
- Mockito support level upgraded to 1.9.0
- JBehave support level upgraded to 3.5.4
- JBehave Web support level upgraded to 3.4.3
Packaging instructions.
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Use maven for compiling, testing, packaging and installing Open Infinity Core -component to local Maven repository with command:
mvn clean lombok:delombok install
v.1.0.0-RELEASE - Initial version
Features using aspect oriented programming:
- Audit trail aspect (prints audit trail information to log4j based configuration)
- Logging aspect (logs will be written to a log4j based configuration)
- Exception translator (prevents unknown exceptions raising within the system)
- XSS validator (simple validator for preventing xss attacks)
- Three tier exception hierarchy deriving from the core abstract exception (application exception, system exception, business violation exception)
- JDBC property placeholder for fetching configuration parameters from a shared database.
Packaging instructions.
Download configuration management tool (Maven 3) and install it (notice that Java Runtime 1.6 is needed):
http://maven.apache.org/download.html
Use maven for compiling, testing and packaging Open Infinity Core -component with command:
mvn clean lombok:delombok compile test package