Difference between revisions of "Removing Libraries"

From PCGen Wiki
Jump to: navigation, search
(Steps/Things to Check)
(Update for the new gradle process)
 
Line 9: Line 9:
 
=Steps/Things to Check=
 
=Steps/Things to Check=
  
# Remove the library locally and run through a full build/test cycle
+
# Edit the build.gradle file to remove the library
# Edit the .classpath file to remove the library (.classpath is an Eclipse IDE file)
+
# Run through a full build/test cycle
# Edit the build.xml file to remove the library (build.xml is the Ant build script)
+
# Commit the updated build.gradle file
# Edit the pom.xml and project.xml to remove the library (both files are Maven build tool files)
 

Latest revision as of 06:20, 5 July 2014

Introduction

From time to time we remove legacy 3rd party libraries. This page lists what you need to do in order to cleanly remove one.

Steps/Things to Check

  1. Edit the build.gradle file to remove the library
  2. Run through a full build/test cycle
  3. Commit the updated build.gradle file