| <?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 Sdk="Microsoft.NET.Sdk"> |
| |
| <!-- These properties must be set prior to importing nuget.props --> |
| <PropertyGroup> |
| <Description>OpenNLP library integration for the Lucene.NET full-text search engine library from The Apache Software Foundation.</Description> |
| <PackageDocumentationRelativeUrl>analysis-opennlp/Lucene.Net.Analysis.OpenNlp.html</PackageDocumentationRelativeUrl> |
| </PropertyGroup> |
| |
| <Import Project="$(SolutionDir).build/nuget.props" /> |
| |
| <PropertyGroup> |
| <!-- Currently, IKVM doesn't officially support building NetFX on anything but Windows, so we skip it for contributors who may be on various platforms. |
| We can remove the condition once that has been addressed. See: https://github.com/ikvmnet/ikvm-maven/issues/49 --> |
| <!--suppress MsbuildTargetFrameworkTagInspection - even though this only has one target right now, we need to use the plural version for the line below --> |
| <TargetFrameworks>net8.0</TargetFrameworks> |
| <TargetFrameworks Condition="$([MSBuild]::IsOsPlatform('Windows'))">$(TargetFrameworks);net472</TargetFrameworks> |
| |
| <AssemblyTitle>Lucene.Net.Analysis.OpenNLP</AssemblyTitle> |
| <PackageTags>$(PackageTags);analysis;natural;language;processing;opennlp</PackageTags> |
| <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> |
| <NoWarn>$(NoWarn);1591;1573</NoWarn> |
| <RootNamespace>Lucene.Net.Analysis.OpenNlp</RootNamespace> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="..\dotnet\Lucene.Net.ICU\Lucene.Net.ICU.csproj" /> |
| <ProjectReference Include="..\Lucene.Net\Lucene.Net.csproj" /> |
| <ProjectReference Include="..\Lucene.Net.Analysis.Common\Lucene.Net.Analysis.Common.csproj" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="ICU4N" Version="$(ICU4NPackageVersion)" /> |
| <PackageReference Include="IKVM" Version="$(IKVMPackageVersion)" /> |
| <PackageReference Include="IKVM.Maven.Sdk" Version="$(IKVMMavenSdkPackageVersion)" /> |
| |
| <!-- This is a transitive dependency of IKVM, but the version it references is vulnerable. We are currently blocked from upgrading |
| IKVM due to the Azure DevOps limitation of 10GB for a single build agent, so we have to add this reference instead. --> |
| <PackageReference Include="System.Text.Json" Version="$(SystemTextJsonPackageVersion)" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <MavenReference Include="org.apache.opennlp:opennlp-tools" Version="$(OpenNLPToolsMavenReferenceVersion)" /> |
| <MavenReference Include="org.osgi:org.osgi.core" Version="$(OSGICoreMavenReferenceVersion)" /> |
| </ItemGroup> |
| |
| </Project> |