diff options
author | admiyo <admiyo@c9f7a03b-bd48-0410-a16d-cbbf54688b0b> | 2011-10-05 20:03:16 +0000 |
---|---|---|
committer | admiyo <admiyo@c9f7a03b-bd48-0410-a16d-cbbf54688b0b> | 2011-10-05 20:03:16 +0000 |
commit | 61bb84d63c5fd18ffe1d83fbcfd3f89dc39bae71 (patch) | |
tree | a8a7f176bb20b2504922208065e0a3cabeab9b1d /pki | |
parent | c5571fb22c7d08b13836b0dd57e30d540298b02d (diff) | |
download | pki-61bb84d63c5fd18ffe1d83fbcfd3f89dc39bae71.tar.gz pki-61bb84d63c5fd18ffe1d83fbcfd3f89dc39bae71.tar.xz pki-61bb84d63c5fd18ffe1d83fbcfd3f89dc39bae71.zip |
eclipse project files
This contains only the files necessary to get the project to import into Eclipse, plus a very small .gitignore file for people that want to use git svn. This patch should have no effects on the way that code currently runs.
The difference between this patch and the previous submission is that this one does not attempt to deal with the problems due to the code duplication between the console and common code bases: it does not include the console in the classpath. People that want to use eclipse to work with the console will have to perform additional modifications. Also, it does not include the directory base/common/test that has mock objects for abstract base classes that have not been completely implemented.
This version has removed all .class file references from the .gitignore as well.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2253 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki')
-rw-r--r-- | pki/.classpath | 34 | ||||
-rw-r--r-- | pki/.gitignore | 2 | ||||
-rw-r--r-- | pki/.project | 17 |
3 files changed, 53 insertions, 0 deletions
diff --git a/pki/.classpath b/pki/.classpath new file mode 100644 index 000000000..891959cbc --- /dev/null +++ b/pki/.classpath @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" path="base/ca/src"/> + <classpathentry kind="src" path="base/common/src"/> + <classpathentry kind="src" path="base/java-tools/src"/> + <classpathentry kind="src" path="base/kra/src"/> + <classpathentry kind="src" path="base/migrate/80"/> + <classpathentry kind="src" path="base/ocsp/src"/> + <classpathentry kind="src" path="base/silent/src/argparser"/> + <classpathentry kind="src" path="base/silent/src/ca"/> + <classpathentry kind="src" path="base/silent/src/common"/> + <classpathentry kind="src" path="base/silent/src/drm"/> + <classpathentry kind="src" path="base/silent/src/http"/> + <classpathentry kind="src" path="base/silent/src/ocsp"/> + <classpathentry kind="src" path="base/silent/src/ra"/> + <classpathentry kind="src" path="base/silent/src/subca"/> + <classpathentry kind="src" path="base/silent/src/tks"/> + <classpathentry kind="src" path="base/silent/src/tps"/> + <classpathentry kind="src" path="base/symkey/src"/> + <classpathentry kind="src" path="base/tks/src"/> + <classpathentry kind="src" path="base/util/src"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="lib" path="/usr/share/java/idm-console-mcc.jar"/> + <classpathentry kind="lib" path="/usr/share/java/idm-console-base.jar"/> + <classpathentry kind="lib" path="/usr/share/java/ldapjdk.jar"/> + <classpathentry kind="lib" path="/usr/share/java/idm-console-nmclf.jar"/> + <classpathentry kind="lib" path="/usr/lib/java/jss4.jar"/> + <classpathentry kind="lib" path="/usr/lib/java/osutil.jar"/> + <classpathentry kind="lib" path="/usr/share/java/velocity.jar"/> + <classpathentry kind="lib" path="/usr/share/java/servlet.jar"/> + <classpathentry kind="lib" path="/usr/share/java/xerces-j2.jar"/> + <classpathentry kind="lib" path="/usr/share/java/junit4.jar"/> + <classpathentry kind="output" path="build/classes"/> +</classpath> diff --git a/pki/.gitignore b/pki/.gitignore new file mode 100644 index 000000000..dc84959d1 --- /dev/null +++ b/pki/.gitignore @@ -0,0 +1,2 @@ +build/ + diff --git a/pki/.project b/pki/.project new file mode 100644 index 000000000..cc1a7216a --- /dev/null +++ b/pki/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>pki</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription> |