Skip to content

Commit 71aaaa7

Browse files
committed
Convert to modern directory structure
1 parent 9e31068 commit 71aaaa7

19 files changed

+263
-261
lines changed

project.clj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
:license {:name "Eclipse Public License"
55
:url "http://www.eclipse.org/legal/epl-v10.html"}
66
:dependencies [[org.clojure.clr/tools.reader "1.3.7"]]
7+
:source-paths ["src/main/clojure"]
8+
:test-paths ["src/test/clojure"]
79
:min-lein-version "2.0.0"
810
:plugins [[lein-clr "0.2.0"]]
911
:deploy-repositories [["clojars" {:url "https://clojars.org/repo/"
Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
4-
<OutputType>Library</OutputType>
5-
<RootNamespace>clojure</RootNamespace>
6-
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
7-
</PropertyGroup>
8-
<PropertyGroup>
9-
<PackageId>clojure.tools.namespace</PackageId>
10-
<Title>clojure.tools.namespace</Title>
11-
<Product>clojure.tools.namespace</Product>
12-
<AssemblyTitle>clojure.tools.namespace</AssemblyTitle>
13-
<Authors>dmiller</Authors>
14-
<Description>Tools for managing namespaces in ClojureCLR.</Description>
15-
<Copyright>Copyright © Rich Hickey, David Miller 2020</Copyright>
16-
<PackageLicenseExpression>EPL-1.0</PackageLicenseExpression>
17-
<RepositoryUrl>https://github.com/clojure/clr.tools.reader</RepositoryUrl>
18-
<Company>ClojureCLR contributors</Company>
19-
<PackageTags>Clojure;ClojureCLR</PackageTags>
20-
<Version>1.2.0</Version>
21-
</PropertyGroup>
22-
<ItemGroup>
23-
<EmbeddedResource Include="tools\namespace\dependency.cljc" />
24-
<EmbeddedResource Include="tools\namespace\dir.clj" />
25-
<EmbeddedResource Include="tools\namespace\file.clj" />
26-
<EmbeddedResource Include="tools\namespace\find.clj" />
27-
<EmbeddedResource Include="tools\namespace\parse.cljc" />
28-
<EmbeddedResource Include="tools\namespace\reload.clj" />
29-
<EmbeddedResource Include="tools\namespace\repl.clj" />
30-
<EmbeddedResource Include="tools\namespace\track.cljc" />
31-
</ItemGroup>
32-
<ItemGroup>
33-
<Folder Include="Properties\" />
34-
</ItemGroup>
35-
<ItemGroup>
36-
<PackageReference Include="clr.tools.reader" Version="1.3.6" />
37-
</ItemGroup>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
4+
<OutputType>Library</OutputType>
5+
<RootNamespace>clojure</RootNamespace>
6+
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
7+
</PropertyGroup>
8+
<PropertyGroup>
9+
<PackageId>clojure.tools.namespace</PackageId>
10+
<Title>clojure.tools.namespace</Title>
11+
<Product>clojure.tools.namespace</Product>
12+
<AssemblyTitle>clojure.tools.namespace</AssemblyTitle>
13+
<Authors>dmiller</Authors>
14+
<Description>Tools for managing namespaces in ClojureCLR.</Description>
15+
<Copyright>Copyright © Rich Hickey, David Miller 2020</Copyright>
16+
<PackageLicenseExpression>EPL-1.0</PackageLicenseExpression>
17+
<RepositoryUrl>https://github.com/clojure/clr.tools.reader</RepositoryUrl>
18+
<Company>ClojureCLR contributors</Company>
19+
<PackageTags>Clojure;ClojureCLR</PackageTags>
20+
<Version>1.2.0</Version>
21+
</PropertyGroup>
22+
<ItemGroup>
23+
<EmbeddedResource Include="tools\namespace\dependency.cljc" />
24+
<EmbeddedResource Include="tools\namespace\dir.clj" />
25+
<EmbeddedResource Include="tools\namespace\file.clj" />
26+
<EmbeddedResource Include="tools\namespace\find.clj" />
27+
<EmbeddedResource Include="tools\namespace\parse.cljc" />
28+
<EmbeddedResource Include="tools\namespace\reload.clj" />
29+
<EmbeddedResource Include="tools\namespace\repl.clj" />
30+
<EmbeddedResource Include="tools\namespace\track.cljc" />
31+
</ItemGroup>
32+
<ItemGroup>
33+
<Folder Include="Properties\" />
34+
</ItemGroup>
35+
<ItemGroup>
36+
<PackageReference Include="clr.tools.reader" Version="1.3.6" />
37+
</ItemGroup>
3838
</Project>

0 commit comments

Comments
 (0)