remove-gpl

Command-line tool for removing the GPL preamble from source code files (eg when preparing a commercial release).

License

License

GroupId

GroupId

com.github.fracpete
ArtifactId

ArtifactId

remove-gpl
Last Version

Last Version

0.0.3
Release Date

Release Date

Type

Type

jar
Description

Description

remove-gpl
Command-line tool for removing the GPL preamble from source code files (eg when preparing a commercial release).
Project Organization

Project Organization

University of Waikato, Hamilton, NZ
Source Code Management

Source Code Management

https://github.com/fracpete/remove-gpl

Download remove-gpl

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.fracpete/remove-gpl/ -->
<dependency>
    <groupId>com.github.fracpete</groupId>
    <artifactId>remove-gpl</artifactId>
    <version>0.0.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.fracpete/remove-gpl/
implementation 'com.github.fracpete:remove-gpl:0.0.3'
// https://jarcasting.com/artifacts/com.github.fracpete/remove-gpl/
implementation ("com.github.fracpete:remove-gpl:0.0.3")
'com.github.fracpete:remove-gpl:jar:0.0.3'
<dependency org="com.github.fracpete" name="remove-gpl" rev="0.0.3">
  <artifact name="remove-gpl" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.fracpete', module='remove-gpl', version='0.0.3')
)
libraryDependencies += "com.github.fracpete" % "remove-gpl" % "0.0.3"
[com.github.fracpete/remove-gpl "0.0.3"]

Dependencies

compile (1)

Group / Artifact Type Version
net.sourceforge.argparse4j : argparse4j jar 0.8.1

Project Modules

There are no modules declared in this project.

remove-gpl

Command-line tool that strips the GPL preamble from source codes files (eg when providing a commercial release).

Command-line

usage: com.github.fracpete.removegpl.Main
       [-h] --dir <dir> [--recursive] [--no-default-patterns]
       [--verbose] [--dry-run] [<file> [<file> ...]]

positional arguments:
  <file>                 The pattern files to apply  (eg when not using the
                         built-in ones or additional ones).

named arguments:
  -h, --help             show this help message and exit
  --dir <dir>            The input directory with the source code files.
  --recursive            Whether to process files recursively.
  --no-default-patterns  Whether  to  disable  the   use   of  the  default
                         patterns.
  --verbose              Whether to process files in verbose mode.
  --dry-run              Files don't get updated when modified.

Default pattern files

The following pattern files are built in:

Pattern file format

Here is the format of the pattern files (Java properties format):

# Template file for patterns

# the regular expression that the files must match in order to get processed
filepattern=.*\.txt

# the number of find/replace patterns (indexing starts at 1)
numpatterns=1

# the 1st find pattern
find1=.*This program is.*

# the 1st replace pattern
replace1=

Maven

Add the following artifact to your dependencies of your pom.xml:

    <dependency>
      <groupId>com.github.fracpete</groupId>
      <artifactId>remove-gpl</artifactId>
      <version>0.0.3</version>
    </dependency>

Versions

Version
0.0.3
0.0.2
0.0.1