Browse Source

Moved agent to instrument

conversation
Arjen Poutsma 17 years ago
parent
commit
577da8f891
  1. 28
      org.springframework.agent/pom.xml
  2. 0
      org.springframework.instrument/.classpath
  3. 0
      org.springframework.instrument/.project
  4. 0
      org.springframework.instrument/.settings/org.eclipse.jdt.core.prefs
  5. 2
      org.springframework.instrument/build.xml
  6. 0
      org.springframework.instrument/ivy.xml
  7. 12
      org.springframework.instrument/pom.xml
  8. 0
      org.springframework.instrument/src/main/java/org/springframework/instrument/InstrumentationSavingAgent.java
  9. 0
      org.springframework.instrument/src/main/java/overview.html
  10. 0
      org.springframework.instrument/src/test/resources/log4j.xml
  11. 4
      org.springframework.instrument/template.mf

28
org.springframework.agent/pom.xml

@ -1,28 +0,0 @@ @@ -1,28 +0,0 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.agent</artifactId>
<packaging>jar</packaging>
<name>Spring Agent</name>
<version>3.0.0.M1</version>
<repositories>
<repository>
<id>com.springsource.repository.bundles.external</id>
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/external</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0
org.springframework.agent/.classpath → org.springframework.instrument/.classpath

0
org.springframework.agent/.project → org.springframework.instrument/.project

0
org.springframework.agent/.settings/org.eclipse.jdt.core.prefs → org.springframework.instrument/.settings/org.eclipse.jdt.core.prefs

2
org.springframework.agent/build.xml → org.springframework.instrument/build.xml

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="org.springframework.agent">
<project name="org.springframework.instrument">
<property file="${basedir}/../build.properties"/>
<import file="${basedir}/../build-spring-framework/package-bundle.xml"/>
<import file="${basedir}/../spring-build/standard/default.xml"/>

0
org.springframework.agent/ivy.xml → org.springframework.instrument/ivy.xml

12
org.springframework.instrument/pom.xml

@ -0,0 +1,12 @@ @@ -0,0 +1,12 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.parent</artifactId>
<version>3.0-M1-SNAPSHOT</version>
</parent>
<artifactId>org.springframework.agent</artifactId>
<packaging>jar</packaging>
<name>Spring Framework: Agent</name>
</project>

0
org.springframework.agent/src/main/java/org/springframework/instrument/InstrumentationSavingAgent.java → org.springframework.instrument/src/main/java/org/springframework/instrument/InstrumentationSavingAgent.java

0
org.springframework.agent/src/main/java/overview.html → org.springframework.instrument/src/main/java/overview.html

0
org.springframework.agent/src/test/resources/log4j.xml → org.springframework.instrument/src/test/resources/log4j.xml

4
org.springframework.agent/template.mf → org.springframework.instrument/template.mf

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
Bundle-SymbolicName: org.springframework.agent
Bundle-Name: Spring Core
Bundle-SymbolicName: org.springframework.instrument
Bundle-Name: Spring Instrument
Bundle-Vendor: SpringSource
Bundle-ManifestVersion: 2
Premain-Class: org.springframework.instrument.InstrumentationSavingAgent
Loading…
Cancel
Save