Skip to main content
summaryrefslogtreecommitdiffstats
blob: 48474bf6934f9da2a3475cec6c8b6935be300b37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
	id="org.eclipse.wst.css.core.tests"
	name="CSS Core Tests Plug-in"
	version="1.0.0"
	provider-name="Eclipse.org"
	class="org.eclipse.wst.css.core.tests.CSSCoreTestsPlugin">

	<runtime>
		<library name="csscoretests.jar">
			<export name="*" />
		</library>
	</runtime>
	<requires>
		<import plugin="org.eclipse.wst.css.core" />
		<import plugin="org.junit" />
		<import plugin="org.eclipse.wst.sse.core" />
  <import plugin="org.eclipse.core.resources"/>
  <import plugin="org.eclipse.core.runtime"/>
	</requires>

</plugin>

Back to the top