You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by al...@apache.org on 2007/06/20 11:40:43 UTC

svn commit: r549029 - in /incubator/wicket/trunk/jdk-1.4/wicket-ioc: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/wicket/ src/main/java/org/apache/wicket/injection/ src/main/java/org/apache/wick...

Author: almaw
Date: Wed Jun 20 02:40:41 2007
New Revision: 549029

URL: http://svn.apache.org/viewvc?view=rev&rev=549029
Log:
wicket-ioc

Added:
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/pom.xml   (with props)
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/wicket/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/wicket/injection/
      - copied from r548809, incubator/wicket/trunk/jdk-1.4/wicket-spring/src/main/java/org/apache/wicket/injection/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/wicket/proxy/
      - copied from r548809, incubator/wicket/trunk/jdk-1.4/wicket-spring/src/main/java/org/apache/wicket/proxy/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/resources/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/resources/META-INF/
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/resources/META-INF/NOTICE
Modified:
    incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/wicket/injection/ComponentInjector.java

Added: incubator/wicket/trunk/jdk-1.4/wicket-ioc/pom.xml
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket-ioc/pom.xml?view=auto&rev=549029
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket-ioc/pom.xml (added)
+++ incubator/wicket/trunk/jdk-1.4/wicket-ioc/pom.xml Wed Jun 20 02:40:41 2007
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+<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.apache.wicket</groupId>
+		<artifactId>wicket-jdk14</artifactId>
+		<version>1.3.0-incubating-SNAPSHOT</version>
+		<relativePath>../pom.xml</relativePath>
+	</parent>
+
+	<artifactId>wicket-ioc</artifactId>
+	<packaging>jar</packaging>
+
+	<name>Wicket IoC common code</name>
+	<description>Google IoC common dependencies for injection and proxying. Used by Spring, Guice, etc.</description>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.wicket</groupId>
+			<artifactId>wicket</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>cglib</groupId>
+			<artifactId>cglib-nodep</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>asm</groupId>
+			<artifactId>asm</artifactId>
+		</dependency>
+	</dependencies>
+</project>

Propchange: incubator/wicket/trunk/jdk-1.4/wicket-ioc/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/wicket/injection/ComponentInjector.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/wicket/injection/ComponentInjector.java?view=diff&rev=549029&r1=548809&r2=549029
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/wicket/injection/ComponentInjector.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/java/org/apache/wicket/injection/ComponentInjector.java Wed Jun 20 02:40:41 2007
@@ -20,7 +20,6 @@
 import org.apache.wicket.application.IComponentInstantiationListener;
 import org.apache.wicket.injection.web.InjectorHolder;
 
-
 /**
  * Enables your application to do Spring dependency injection. To use, register
  * the injector as a {@link org.apache.wicket.application.IComponentInstantiationListener}

Added: incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/resources/META-INF/NOTICE
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/resources/META-INF/NOTICE?view=auto&rev=549029
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/resources/META-INF/NOTICE (added)
+++ incubator/wicket/trunk/jdk-1.4/wicket-ioc/src/main/resources/META-INF/NOTICE Wed Jun 20 02:40:41 2007
@@ -0,0 +1,5 @@
+   Apache Wicket
+   Copyright 2007 The Apache Software Foundation
+
+   This product includes software developed at
+   The Apache Software Foundation (http://www.apache.org/).