File: INSTALL

package info (click to toggle)
japi-compliance-checker 2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 648 kB
  • sloc: perl: 8,569; xml: 2,825; makefile: 29
file content (85 lines) | stat: -rw-r--r-- 1,682 bytes parent folder | download | duplicates (2)
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

Copyright (C) 2011-2018 Andrey Ponomarenko's ABI Laboratory

All rights reserved.


RELEASE INFORMATION

Project:           Java API Compliance Checker (JAPICC)
Version:           2.3
Date:              August 30, 2017


This file explains how to install and setup environment
for the tool in your computer.


Content:

   1. Requirements for Linux, FreeBSD and Mac OS X
   2. Requirements for MS Windows
   3. Configure and Install
   4. Usage
   5. Advanced Usage


1. REQUIREMENTS FOR LINUX, FREEBSD and MAC OS X
===============================================

   1. JDK or OpenJDK - development files (javap, javac, jar, jmod)
   2. Perl 5 (5.8 or newer)



2. REQUIREMENTS FOR MS WINDOWS
==============================

   1. JDK or OpenJDK (javap, javac, jar, jmod)
   2. Active Perl 5 (5.8 or newer)



3. CONFIGURE AND INSTALL
========================

   This command will install an japi-compliance-checker program in the
   PREFIX/bin system directory:

     sudo make install prefix=PREFIX [/usr, /usr/local, ...]

3.1 Remove

     sudo make uninstall prefix=PREFIX



4. USAGE
========

   1. japi-compliance-checker OLD.jar NEW.jar
   2. japi-compliance-checker OLD.jmod NEW.jmod



5. ADVANCED USAGE
=================

   1. Create XML-descriptors for two versions
      of a library (OLD.xml and NEW.xml):
            <version>
                1.0
            </version>
    
            <archives>
                /path1/to/JAR(s) OR JMOD(s)/
                /path2/to/JAR(s) OR JMOD(s)/
                ...
            </archives>

   2. japi-compliance-checker -lib NAME -old OLD.xml -new NEW.xml
   3. For advanced usage, see output of -help option.



Enjoy!