notify-dpml AT lists.ibiblio.org
Subject: DPML Notify
List archive
svn commit: r1448 - in development/laboratory/planet/industry/industrial-automation: . parts parts/alarm parts/alarm/src/test/net/dpml/ia/parts/alarm services services/alarm services/alarm/src/main/net/dpml/ia/alarm
- From: niclas AT netcompartner.com
- To: notify-dpml AT lists.ibiblio.org
- Subject: svn commit: r1448 - in development/laboratory/planet/industry/industrial-automation: . parts parts/alarm parts/alarm/src/test/net/dpml/ia/parts/alarm services services/alarm services/alarm/src/main/net/dpml/ia/alarm
- Date: Mon, 10 Jan 2005 18:58:28 +0100
Author: niclas
Date: Mon Jan 10 18:58:27 2005
New Revision: 1448
Modified:
development/laboratory/planet/industry/industrial-automation/build.xml
development/laboratory/planet/industry/industrial-automation/parts/alarm/build.xml
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AcknowledgeEventTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AcknowledgedStateTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/ActivatedStateTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/ActivationEventTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AlarmHistoryImplTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AlarmImplTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/DeactivatedStateTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/DeactivationEventTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/NormalStateTest.java
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/StandardModelSpiImplTest.java
development/laboratory/planet/industry/industrial-automation/parts/index.xml
development/laboratory/planet/industry/industrial-automation/services/alarm/build.xml
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/Alarm.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmCreationException.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmEvent.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmException.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmHistory.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmListener.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmModel.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmModelProvider.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmService.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmState.java
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmTriggerException.java
development/laboratory/planet/industry/industrial-automation/services/index.xml
Log:
Copyright adjustment and fixing that it builds from commandline.
Modified:
development/laboratory/planet/industry/industrial-automation/build.xml
==============================================================================
--- development/laboratory/planet/industry/industrial-automation/build.xml
(original)
+++ development/laboratory/planet/industry/industrial-automation/build.xml
Mon Jan 10 18:58:27 2005
@@ -1,13 +1,31 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
-Copyright 2004 Niclas Hedhman, All rights reserved.
+Copyright 2004 Niclas Hedhman
+
+Licensed 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 name="dpml-ia" default="default" basedir="."
- xmlns:x="antlib:net.dpml.magic" xmlns:transit="antlib:net.dpml.transit">
+<project
+ name="dpml-ia"
+ default="install"
+ basedir="."
+ xmlns:magic="antlib:net.dpml.magic"
+ xmlns:x="plugin:dpml/magic/dpml-magic-core"
+>
- <property file="build.properties"/>
- <transit:init />
- <import file="${dpml.templates}/reactor.xml"/>
+ <magic:import uri="artifact:template:dpml/magic/reactor"/>
</project>
+
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/build.xml
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/build.xml
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/build.xml
Mon Jan 10 18:58:27 2005
@@ -17,17 +17,15 @@
limitations under the License.
-->
-<project name="dpml-ia-alarm-std" default="install" basedir="."
- xmlns:x="antlib:net.dpml.magic" xmlns:transit="antlib:net.dpml.transit"
- >
- <property file="build.properties"/>
- <transit:init/>
- <import file="${dpml.templates}/standard.xml"/>
+<project
+ name="dpml-ia-alarm-std"
+ default="install"
+ basedir="."
+ xmlns:magic="antlib:net.dpml.magic"
+ xmlns:x="plugin:dpml/magic/dpml-magic-core"
+>
+
+ <magic:import uri="artifact:template:dpml/magic/standard"/>
- <target name="build" depends="standard.build" >
-
- <x:property name="alarm.path" key="dpml-ia-alarm-api" feature="path" />
- <echo>${alarm.path}</echo>
- </target>
</project>
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AcknowledgeEventTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AcknowledgeEventTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AcknowledgeEventTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AcknowledgedStateTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AcknowledgedStateTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AcknowledgedStateTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/ActivatedStateTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/ActivatedStateTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/ActivatedStateTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/ActivationEventTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/ActivationEventTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/ActivationEventTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AlarmHistoryImplTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AlarmHistoryImplTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AlarmHistoryImplTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AlarmImplTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AlarmImplTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/AlarmImplTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/DeactivatedStateTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/DeactivatedStateTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/DeactivatedStateTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/DeactivationEventTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/DeactivationEventTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/DeactivationEventTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/NormalStateTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/NormalStateTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/NormalStateTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/StandardModelSpiImplTest.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/StandardModelSpiImplTest.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/alarm/src/test/net/dpml/ia/parts/alarm/StandardModelSpiImplTest.java
Mon Jan 10 18:58:27 2005
@@ -1,6 +1,5 @@
/*
- * Copyright 1996-2003 Bali Automation.
- * Copyright 2004-2005 Niclas Hedhman.
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/parts/index.xml
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/parts/index.xml
(original)
+++
development/laboratory/planet/industry/industrial-automation/parts/index.xml
Mon Jan 10 18:58:27 2005
@@ -16,8 +16,7 @@
-->
<index>
- <import uri="artifact:module:dpml/metro/tools/dpml-metro-tools#SNAPSHOT"
/>
- <import
uri="artifact:module:dpml/metro/public/dpml-metro-public#SNAPSHOT" />
+ <import uri="artifact:module:dpml/metro/dpml-metro#SNAPSHOT" />
<import index="../services/index.xml" />
<project basedir="alarm" >
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/build.xml
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/build.xml
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/build.xml
Mon Jan 10 18:58:27 2005
@@ -17,12 +17,15 @@
limitations under the License.
-->
-<project name="dpml-ia-alarm-api" default="install" basedir="."
- xmlns:x="antlib:net.dpml.magic" xmlns:transit="antlib:net.dpml.transit"
- >
- <property file="build.properties"/>
- <transit:init/>
- <import file="${dpml.templates}/standard.xml"/>
+<project
+ name="dpml-ia-alarm-api"
+ default="install"
+ basedir="."
+ xmlns:magic="antlib:net.dpml.magic"
+ xmlns:x="plugin:dpml/magic/dpml-magic-core"
+>
+
+ <magic:import uri="artifact:template:dpml/magic/standard"/>
</project>
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/Alarm.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/Alarm.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/Alarm.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmCreationException.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmCreationException.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmCreationException.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmEvent.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmEvent.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmEvent.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmException.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmException.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmException.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmHistory.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmHistory.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmHistory.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmListener.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmListener.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmListener.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmModel.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmModel.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmModel.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmModelProvider.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmModelProvider.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmModelProvider.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmService.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmService.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmService.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmState.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmState.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmState.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmTriggerException.java
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmTriggerException.java
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/alarm/src/main/net/dpml/ia/alarm/AlarmTriggerException.java
Mon Jan 10 18:58:27 2005
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996-2004 Niclas Hedhman
+ * Copyright 1996-2005 Niclas Hedhman.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Modified:
development/laboratory/planet/industry/industrial-automation/services/index.xml
==============================================================================
---
development/laboratory/planet/industry/industrial-automation/services/index.xml
(original)
+++
development/laboratory/planet/industry/industrial-automation/services/index.xml
Mon Jan 10 18:58:27 2005
@@ -16,7 +16,7 @@
-->
<index>
- <import uri="artifact:module:dpml/metro/tools/dpml-metro-tools#SNAPSHOT"
/>
+ <import uri="artifact:module:dpml/metro/dpml-metro#SNAPSHOT" />
<resource>
<info>
- svn commit: r1448 - in development/laboratory/planet/industry/industrial-automation: . parts parts/alarm parts/alarm/src/test/net/dpml/ia/parts/alarm services services/alarm services/alarm/src/main/net/dpml/ia/alarm, niclas, 01/10/2005
Archive powered by MHonArc 2.6.24.